diff --git a/ChangeLog b/ChangeLog index f1d4f03f27..99e62848e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23,6 +23,11 @@ phpMyAdmin - ChangeLog - issue Notice in Structure page of views - issue #11510 AUTO_INCREMENT always exported when IF NOT EXISTS is on - issue #11516 Some partitions are missing in copied table +- issue #11521 Notice of undefined variable when performing SHOW CREATE +- issue #11509 Error exporting sql query results with table alias +- issue #11512 SQL editing window does not recognise 'OUTER' keyword in 'LEFT OUTER JOIN' +- issue #11518 "NOT IN" clause not recognized (MySQL 5.6 and 5.7) +- issue #11524 Yellow star does not change in database Structure after add/remove from favorites 4.5.0.2 (2015-09-25) - issue #11497 Incorrect indexes when exporting diff --git a/libraries/TypesMySQL.php b/libraries/TypesMySQL.php index f4aac083d8..60ada74ae7 100644 --- a/libraries/TypesMySQL.php +++ b/libraries/TypesMySQL.php @@ -442,11 +442,6 @@ class TypesMySQL extends Types 'MPolyFromWKB', ); - case 'JSON': - return array( - 'JSON_ARRAY', - 'JSON_OBJECT', - ); } return array(); } diff --git a/libraries/controllers/DatabaseStructureController.php b/libraries/controllers/DatabaseStructureController.php index ad587a7942..238efb2ee5 100644 --- a/libraries/controllers/DatabaseStructureController.php +++ b/libraries/controllers/DatabaseStructureController.php @@ -694,6 +694,7 @@ class DatabaseStructureController extends DatabaseController if ($already_favorite) { // If already in favorite list, remove it. $fav_instance->remove($this->db, $favorite_table); + $already_favorite = false; // for favorite_anchor template } } elseif (isset($_REQUEST['add_favorite'])) { if (!$already_favorite) { @@ -703,6 +704,7 @@ class DatabaseStructureController extends DatabaseController } else { // Otherwise add to favorite list. $fav_instance->add($this->db, $favorite_table); + $already_favorite = true; // for favorite_anchor template } } } @@ -733,7 +735,8 @@ class DatabaseStructureController extends DatabaseController 'current_table' => array( 'TABLE_NAME' => $favorite_table ), - 'titles' => $titles + 'titles' => $titles, + 'already_favorite' => $already_favorite ) ) ) diff --git a/libraries/controllers/TableStructureController.php b/libraries/controllers/TableStructureController.php index ef4c4cbc52..9de2696235 100644 --- a/libraries/controllers/TableStructureController.php +++ b/libraries/controllers/TableStructureController.php @@ -621,6 +621,11 @@ class TableStructureController extends TableController && ($partitionDetails['partition_by'] == 'RANGE' || $partitionDetails['partition_by'] == 'LIST'); + // Values are specified only for LIST and RANGE type partitions + $partitionDetails['value_enabled'] = isset($partitionDetails['partition_by']) + && ($partitionDetails['partition_by'] == 'RANGE' + || $partitionDetails['partition_by'] == 'LIST'); + $partitionDetails['partitions'] = array(); for ($i = 0; $i < intval($partitionDetails['partition_count']); $i++) { @@ -664,15 +669,6 @@ class TableStructureController extends TableController $partition['name'] = 'p' . $i; $partition['prefix'] = 'partitions[' . $i . ']'; - // Values are specified only for LIST and RANGE type partitions - $partition['value_enabled'] = isset($partitionDetails['partition_by']) - && ($partitionDetails['partition_by'] == 'RANGE' - || $partitionDetails['partition_by'] == 'LIST'); - if (! $partition['value_enabled']) { - $partition['value_type'] = ''; - $partition['value'] = ''; - } - if ($partitionDetails['subpartition_count'] > 1) { $partition['subpartition_count'] = $partitionDetails['subpartition_count']; $partition['subpartitions'] = array(); diff --git a/libraries/sql-parser/src/Component.php b/libraries/sql-parser/src/Component.php index eff88e66be..2e406c5c7b 100644 --- a/libraries/sql-parser/src/Component.php +++ b/libraries/sql-parser/src/Component.php @@ -10,89 +10,73 @@ * * @package SqlParser */ +namespace SqlParser; -namespace { +require_once 'common.php'; - if (!function_exists('__')) { - - /** - * Translates the given string. - * - * @param string $str String to be translated. - * - * @return string - */ - function __($str) - { - return $str; - } - } -} - -namespace SqlParser { +/** + * A component (of a statement) is a part of a statement that is common to + * multiple query types. + * + * @category Components + * @package SqlParser + * @author Dan Ungureanu + * @license http://opensource.org/licenses/GPL-2.0 GNU Public License + */ +abstract class Component +{ /** - * A component (of a statement) is a part of a statement that is common to - * multiple query types. + * Parses the tokens contained in the given list in the context of the given + * parser. * - * @category Components - * @package SqlParser - * @author Dan Ungureanu - * @license http://opensource.org/licenses/GPL-2.0 GNU Public License + * @param Parser $parser The parser that serves as context. + * @param TokensList $list The list of tokens that are being parsed. + * @param array $options Parameters for parsing. + * + * @throws \Exception Not implemented yet. + * + * @return mixed */ - abstract class Component + public static function parse( + Parser $parser, + TokensList $list, + array $options = array() + ) { + // This method should be abstract, but it can't be both static and + // abstract. + throw new \Exception(\__('Not implemented yet.')); + } + + /** + * Builds the string representation of a component of this type. + * + * In other words, this function represents the inverse function of + * `static::parse`. + * + * @param mixed $component The component to be built. + * @param array $options Parameters for building. + * + * @throws \Exception Not implemented yet. + * + * @return string + */ + public static function build($component, array $options = array()) { + // This method should be abstract, but it can't be both static and + // abstract. + throw new \Exception(\__('Not implemented yet.')); + } - /** - * Parses the tokens contained in the given list in the context of the given - * parser. - * - * @param Parser $parser The parser that serves as context. - * @param TokensList $list The list of tokens that are being parsed. - * @param array $options Parameters for parsing. - * - * @throws \Exception Not implemented yet. - * - * @return mixed - */ - public static function parse( - Parser $parser, TokensList $list, array $options = array() - ) { - // This method should be abstract, but it can't be both static and - // abstract. - throw new \Exception(\__('Not implemented yet.')); - } - - /** - * Builds the string representation of a component of this type. - * - * In other words, this function represents the inverse function of - * `static::parse`. - * - * @param mixed $component The component to be built. - * @param array $options Parameters for building. - * - * @throws \Exception Not implemented yet. - * - * @return string - */ - public static function build($component, array $options = array()) - { - // This method should be abstract, but it can't be both static and - // abstract. - throw new \Exception(\__('Not implemented yet.')); - } - - /** - * Builds the string representation of a component of this type. - * - * @see static::build - * - * @return string - */ - public function __toString() - { - return static::build($this); - } + /** + * Builds the string representation of a component of this type. + * + * @see static::build + * + * @return string + */ + public function __toString() + { + return static::build($this); } } diff --git a/libraries/sql-parser/src/Components/AlterOperation.php b/libraries/sql-parser/src/Components/AlterOperation.php index ee9302c54d..8dad8e888e 100644 --- a/libraries/sql-parser/src/Components/AlterOperation.php +++ b/libraries/sql-parser/src/Components/AlterOperation.php @@ -137,7 +137,6 @@ class AlterOperation extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/Array2d.php b/libraries/sql-parser/src/Components/Array2d.php index e4c0ed7504..a46813b081 100644 --- a/libraries/sql-parser/src/Components/Array2d.php +++ b/libraries/sql-parser/src/Components/Array2d.php @@ -58,7 +58,6 @@ class Array2d extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/ArrayObj.php b/libraries/sql-parser/src/Components/ArrayObj.php index 9f4e972991..fb199eacac 100644 --- a/libraries/sql-parser/src/Components/ArrayObj.php +++ b/libraries/sql-parser/src/Components/ArrayObj.php @@ -56,7 +56,7 @@ class ArrayObj extends Component * @param TokensList $list The list of tokens that are being parsed. * @param array $options Parameters for parsing. * - * @return mixed + * @return ArrayObj|Component[] */ public static function parse(Parser $parser, TokensList $list, array $options = array()) { @@ -79,7 +79,6 @@ class ArrayObj extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/Condition.php b/libraries/sql-parser/src/Components/Condition.php index 43347a8799..b33b0c3b4a 100644 --- a/libraries/sql-parser/src/Components/Condition.php +++ b/libraries/sql-parser/src/Components/Condition.php @@ -43,6 +43,7 @@ class Condition extends Component 'IN' => 1, 'IS' => 1, 'LIKE' => 1, + 'NOT IN' => 1, 'NOT NULL' => 1, 'NULL' => 1, 'OR' => 1, @@ -111,7 +112,6 @@ class Condition extends Component $betweenBefore = false; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/CreateDefinition.php b/libraries/sql-parser/src/Components/CreateDefinition.php index 0ef7c4a1a1..21f44feaed 100644 --- a/libraries/sql-parser/src/Components/CreateDefinition.php +++ b/libraries/sql-parser/src/Components/CreateDefinition.php @@ -126,8 +126,12 @@ class CreateDefinition extends Component * @param bool $isConstraint Whether this field is a constraint or not. * @param Reference $references References. */ - public function __construct($name = null, $options = null, $type = null, - $isConstraint = false, $references = null + public function __construct( + $name = null, + $options = null, + $type = null, + $isConstraint = false, + $references = null ) { $this->name = $name; $this->options = $options; @@ -178,7 +182,6 @@ class CreateDefinition extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/DataType.php b/libraries/sql-parser/src/Components/DataType.php index a3aca73d6f..aac40ee3fa 100644 --- a/libraries/sql-parser/src/Components/DataType.php +++ b/libraries/sql-parser/src/Components/DataType.php @@ -75,7 +75,9 @@ class DataType extends Component * @param array $parameters The parameters (size or possible values). * @param OptionsArray $options The options of this data type. */ - public function __construct($name = null, array $parameters = array(), + public function __construct( + $name = null, + array $parameters = array(), $options = null ) { $this->name = $name; @@ -108,7 +110,6 @@ class DataType extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/Expression.php b/libraries/sql-parser/src/Components/Expression.php index 1f8752ed76..22cd23fd10 100644 --- a/libraries/sql-parser/src/Components/Expression.php +++ b/libraries/sql-parser/src/Components/Expression.php @@ -160,7 +160,6 @@ class Expression extends Component $prev = null; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * @@ -274,7 +273,6 @@ class Expression extends Component // field should be skipped; used to parse table names). $field = (!empty($options['skipColumn'])) ? 'table' : 'column'; if (!empty($ret->$field)) { - // No alias is expected. if (!empty($options['noAlias'])) { break; diff --git a/libraries/sql-parser/src/Components/ExpressionArray.php b/libraries/sql-parser/src/Components/ExpressionArray.php index 8327296fe4..5c84dcd950 100644 --- a/libraries/sql-parser/src/Components/ExpressionArray.php +++ b/libraries/sql-parser/src/Components/ExpressionArray.php @@ -51,7 +51,6 @@ class ExpressionArray extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/FunctionCall.php b/libraries/sql-parser/src/Components/FunctionCall.php index 54e95ac25a..9d2dfed5d8 100644 --- a/libraries/sql-parser/src/Components/FunctionCall.php +++ b/libraries/sql-parser/src/Components/FunctionCall.php @@ -80,7 +80,6 @@ class FunctionCall extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/IntoKeyword.php b/libraries/sql-parser/src/Components/IntoKeyword.php index b230308fc6..1ac7be82e9 100644 --- a/libraries/sql-parser/src/Components/IntoKeyword.php +++ b/libraries/sql-parser/src/Components/IntoKeyword.php @@ -74,7 +74,6 @@ class IntoKeyword extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/JoinKeyword.php b/libraries/sql-parser/src/Components/JoinKeyword.php index 529763bed5..2a7693efab 100644 --- a/libraries/sql-parser/src/Components/JoinKeyword.php +++ b/libraries/sql-parser/src/Components/JoinKeyword.php @@ -35,7 +35,9 @@ class JoinKeyword extends Component 'INNER JOIN' => 'INNER', 'JOIN' => 'JOIN', 'LEFT JOIN' => 'LEFT', + 'LEFT OUTER JOIN' => 'LEFT', 'RIGHT JOIN' => 'RIGHT', + 'RIGHT OUTER JOIN' => 'RIGHT', ); /** @@ -98,7 +100,6 @@ class JoinKeyword extends Component } for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * @@ -132,7 +133,7 @@ class JoinKeyword extends Component if (($token->type === Token::TYPE_KEYWORD) && ($token->value === 'ON')) { $state = 3; } - } else if ($state === 3) { + } elseif ($state === 3) { $expr->on = Condition::parse($parser, $list); $ret[] = $expr; $expr = new JoinKeyword(); @@ -160,7 +161,7 @@ class JoinKeyword extends Component $ret = array(); foreach ($component as $c) { $ret[] = (($c->type === 'JOIN') ? 'JOIN ' : ($c->type . ' JOIN ')) - . $c->expr . ' ON ' . Condition::build($c->on); + . $c->expr . ' ON ' . Condition::build($c->on); } return implode(' ', $ret); } diff --git a/libraries/sql-parser/src/Components/Key.php b/libraries/sql-parser/src/Components/Key.php index 70b2b937e3..490d067564 100644 --- a/libraries/sql-parser/src/Components/Key.php +++ b/libraries/sql-parser/src/Components/Key.php @@ -75,8 +75,11 @@ class Key extends Component * @param string $type The type of this key. * @param OptionsArray $options The options of this key. */ - public function __construct($name = null, array $columns = array(), - $type = null, $options = null + public function __construct( + $name = null, + array $columns = array(), + $type = null, + $options = null ) { $this->name = $name; $this->columns = $columns; @@ -119,7 +122,6 @@ class Key extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/Limit.php b/libraries/sql-parser/src/Components/Limit.php index edf663aab1..c6b3290cab 100644 --- a/libraries/sql-parser/src/Components/Limit.php +++ b/libraries/sql-parser/src/Components/Limit.php @@ -65,7 +65,6 @@ class Limit extends Component $offset = false; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/OptionsArray.php b/libraries/sql-parser/src/Components/OptionsArray.php index f24635ad47..a7fbf41249 100644 --- a/libraries/sql-parser/src/Components/OptionsArray.php +++ b/libraries/sql-parser/src/Components/OptionsArray.php @@ -99,7 +99,6 @@ class OptionsArray extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/OrderKeyword.php b/libraries/sql-parser/src/Components/OrderKeyword.php index 9c1ad5920d..fc226f0446 100644 --- a/libraries/sql-parser/src/Components/OrderKeyword.php +++ b/libraries/sql-parser/src/Components/OrderKeyword.php @@ -79,7 +79,6 @@ class OrderKeyword extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/ParameterDefinition.php b/libraries/sql-parser/src/Components/ParameterDefinition.php index 9ed9cfccb0..aea8f9c199 100644 --- a/libraries/sql-parser/src/Components/ParameterDefinition.php +++ b/libraries/sql-parser/src/Components/ParameterDefinition.php @@ -80,7 +80,6 @@ class ParameterDefinition extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/PartitionDefinition.php b/libraries/sql-parser/src/Components/PartitionDefinition.php index b9da7523ab..bc30f61f02 100644 --- a/libraries/sql-parser/src/Components/PartitionDefinition.php +++ b/libraries/sql-parser/src/Components/PartitionDefinition.php @@ -36,8 +36,8 @@ class PartitionDefinition extends Component * @var array */ public static $OPTIONS = array( - 'ENGINE' => array(1, 'var'), 'STORAGE ENGINE' => array(1, 'var'), + 'ENGINE' => array(1, 'var'), 'COMMENT' => array(2, 'var'), 'DATA DIRECTORY' => array(3, 'var'), 'INDEX DIRECTORY' => array(4, 'var'), @@ -108,7 +108,6 @@ class PartitionDefinition extends Component * 0 -------------[ PARTITION | SUBPARTITION ]------------> 1 * * 1 -----------------------[ name ]----------------------> 2 - * 1 -----------------------[ name ]----------------------> 5 * * 2 ----------------------[ VALUES ]---------------------> 3 * @@ -126,7 +125,6 @@ class PartitionDefinition extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * @@ -149,12 +147,16 @@ class PartitionDefinition extends Component $state = 1; } elseif ($state === 1) { $ret->name = $token->value; - // Get next token + + // Looking ahead for a 'VALUES' keyword. + $idx = $list->idx; + $list->getNext(); $nextToken = $list->getNext(); - $nextToken = $list->getNext(); - --$list->idx; --$list->idx; // Reset index - $isValue = ($nextToken->type === Token::TYPE_KEYWORD) && ($nextToken->value === 'VALUES'); - $state = $isValue ? 2 : 5; + $list->idx = $idx; + + $state = ($nextToken->type === Token::TYPE_KEYWORD) + && ($nextToken->value === 'VALUES') + ? 2 : 5; } elseif ($state === 2) { $state = 3; } elseif ($state === 3) { @@ -208,14 +210,15 @@ class PartitionDefinition extends Component return "(\n" . implode(",\n", $component) . "\n)"; } else { if ($component->isSubpartition) { - return 'SUBPARTITION ' . $component->name . ' ' . $component->options; + return trim('SUBPARTITION ' . $component->name . ' ' . $component->options); } else { $subpartitions = empty($component->subpartitions) ? '' : ' ' . PartitionDefinition::build($component->subpartitions); - return 'PARTITION ' . $component->name - . (empty($component->type) - ? '' : ' VALUES ' . $component->type . ' ' . $component->expr) - . ' ' .$component->options . $subpartitions; + return trim( + 'PARTITION ' . $component->name + . (empty($component->type) ? '' : ' VALUES ' . $component->type . ' ' . $component->expr) + . $component->options . $subpartitions + ); } } } diff --git a/libraries/sql-parser/src/Components/Reference.php b/libraries/sql-parser/src/Components/Reference.php index 6826f7f4ae..037499a620 100644 --- a/libraries/sql-parser/src/Components/Reference.php +++ b/libraries/sql-parser/src/Components/Reference.php @@ -99,7 +99,6 @@ class Reference extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/RenameOperation.php b/libraries/sql-parser/src/Components/RenameOperation.php index 5f7c9a5723..8776963ea5 100644 --- a/libraries/sql-parser/src/Components/RenameOperation.php +++ b/libraries/sql-parser/src/Components/RenameOperation.php @@ -71,7 +71,6 @@ class RenameOperation extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Components/SetOperation.php b/libraries/sql-parser/src/Components/SetOperation.php index 3d04320fb2..9281902fcf 100644 --- a/libraries/sql-parser/src/Components/SetOperation.php +++ b/libraries/sql-parser/src/Components/SetOperation.php @@ -67,7 +67,6 @@ class SetOperation extends Component $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * diff --git a/libraries/sql-parser/src/Context.php b/libraries/sql-parser/src/Context.php index d6602ce29d..5cbf6a1abb 100644 --- a/libraries/sql-parser/src/Context.php +++ b/libraries/sql-parser/src/Context.php @@ -464,7 +464,11 @@ abstract class Context // If it didn't work, we are looking for a new one and skipping // over to the next generation that will try the new context. $context = preg_replace( - '/[1-9](0*)$/', '0$1', $context, -1, $count + '/[1-9](0*)$/', + '0$1', + $context, + -1, + $count ); continue; } diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50000.php b/libraries/sql-parser/src/Contexts/ContextMySql50000.php index 5cbb47cdea..01090b3323 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50000.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50000.php @@ -155,15 +155,15 @@ class ContextMySql50000 extends Context 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, - 'SUBPARTITION BY' => 7, - 'GENERATED ALWAYS' => 7, + 'LEFT OUTER JOIN' => 7, 'SUBPARTITION BY' => 7, + 'GENERATED ALWAYS' => 7, 'RIGHT OUTER JOIN' => 7, 'START TRANSACTION' => 7, 'SELECT TRANSACTION' => 7, 'DEFAULT CHARACTER SET' => 7, 'WITH CONSISTENT SNAPSHOT' => 7, 'XML' => 9, - 'ENUM' => 9, 'TEXT' => 9, + 'ENUM' => 9, 'JSON' => 9, 'TEXT' => 9, 'ARRAY' => 9, 'SERIAL' => 9, 'BOOLEAN' => 9, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50100.php b/libraries/sql-parser/src/Contexts/ContextMySql50100.php index 34192ba1bc..b10ff1cd32 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50100.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50100.php @@ -168,15 +168,15 @@ class ContextMySql50100 extends Context 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, - 'SUBPARTITION BY' => 7, - 'GENERATED ALWAYS' => 7, + 'LEFT OUTER JOIN' => 7, 'SUBPARTITION BY' => 7, + 'GENERATED ALWAYS' => 7, 'RIGHT OUTER JOIN' => 7, 'START TRANSACTION' => 7, 'SELECT TRANSACTION' => 7, 'DEFAULT CHARACTER SET' => 7, 'WITH CONSISTENT SNAPSHOT' => 7, 'XML' => 9, - 'ENUM' => 9, 'TEXT' => 9, + 'ENUM' => 9, 'JSON' => 9, 'TEXT' => 9, 'ARRAY' => 9, 'SERIAL' => 9, 'BOOLEAN' => 9, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50500.php b/libraries/sql-parser/src/Contexts/ContextMySql50500.php index e8a32fe3a8..c7faa84771 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50500.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50500.php @@ -173,15 +173,15 @@ class ContextMySql50500 extends Context 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, - 'SUBPARTITION BY' => 7, - 'GENERATED ALWAYS' => 7, + 'LEFT OUTER JOIN' => 7, 'SUBPARTITION BY' => 7, + 'GENERATED ALWAYS' => 7, 'RIGHT OUTER JOIN' => 7, 'START TRANSACTION' => 7, 'SELECT TRANSACTION' => 7, 'DEFAULT CHARACTER SET' => 7, 'WITH CONSISTENT SNAPSHOT' => 7, 'XML' => 9, - 'ENUM' => 9, 'TEXT' => 9, + 'ENUM' => 9, 'JSON' => 9, 'TEXT' => 9, 'ARRAY' => 9, 'SERIAL' => 9, 'BOOLEAN' => 9, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50600.php b/libraries/sql-parser/src/Contexts/ContextMySql50600.php index c09425b0b9..9854d37fb6 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50600.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50600.php @@ -178,15 +178,15 @@ class ContextMySql50600 extends Context 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, - 'SUBPARTITION BY' => 7, - 'GENERATED ALWAYS' => 7, + 'LEFT OUTER JOIN' => 7, 'SUBPARTITION BY' => 7, + 'GENERATED ALWAYS' => 7, 'RIGHT OUTER JOIN' => 7, 'START TRANSACTION' => 7, 'SELECT TRANSACTION' => 7, 'DEFAULT CHARACTER SET' => 7, 'WITH CONSISTENT SNAPSHOT' => 7, 'XML' => 9, - 'ENUM' => 9, 'TEXT' => 9, + 'ENUM' => 9, 'JSON' => 9, 'TEXT' => 9, 'ARRAY' => 9, 'SERIAL' => 9, 'BOOLEAN' => 9, diff --git a/libraries/sql-parser/src/Contexts/ContextMySql50700.php b/libraries/sql-parser/src/Contexts/ContextMySql50700.php index 7e7a29d876..a308f5a5cd 100644 --- a/libraries/sql-parser/src/Contexts/ContextMySql50700.php +++ b/libraries/sql-parser/src/Contexts/ContextMySql50700.php @@ -186,15 +186,15 @@ class ContextMySql50700 extends Context 'CHARACTER SET' => 7, 'IF NOT EXISTS' => 7, 'DATA DIRECTORY' => 7, 'DEFAULT CHARSET' => 7, 'DEFAULT COLLATE' => 7, 'INDEX DIRECTORY' => 7, - 'SUBPARTITION BY' => 7, - 'GENERATED ALWAYS' => 7, + 'LEFT OUTER JOIN' => 7, 'SUBPARTITION BY' => 7, + 'GENERATED ALWAYS' => 7, 'RIGHT OUTER JOIN' => 7, 'START TRANSACTION' => 7, 'SELECT TRANSACTION' => 7, 'DEFAULT CHARACTER SET' => 7, 'WITH CONSISTENT SNAPSHOT' => 7, 'XML' => 9, - 'ENUM' => 9, 'TEXT' => 9, + 'ENUM' => 9, 'JSON' => 9, 'TEXT' => 9, 'ARRAY' => 9, 'SERIAL' => 9, 'BOOLEAN' => 9, diff --git a/libraries/sql-parser/src/Lexer.php b/libraries/sql-parser/src/Lexer.php index e4561de9ff..9e99b60c86 100644 --- a/libraries/sql-parser/src/Lexer.php +++ b/libraries/sql-parser/src/Lexer.php @@ -9,873 +9,868 @@ * * @package SqlParser */ +namespace SqlParser; -namespace { +require_once 'common.php'; - if (!function_exists('__')) { +use SqlParser\Exceptions\LexerException; - /** - * Translates the given string. - * - * @param string $str String to be translated. - * - * @return string - */ - function __($str) - { - return $str; - } - } +if (!defined('USE_UTF_STRINGS')) { + // NOTE: In previous versions of PHP (5.5 and older) the default + // internal encoding is "ISO-8859-1". + // All `mb_` functions must specify the correct encoding, which is + // 'UTF-8' in order to work properly. + + /** + * Forces usage of `UtfString` if the string is multibyte. + * `UtfString` may be slower, but it gives better results. + * + * @var bool + */ + define('USE_UTF_STRINGS', true); } -namespace SqlParser { +/** + * Performs lexical analysis over a SQL statement and splits it in multiple + * tokens. + * + * The output of the lexer is affected by the context of the SQL statement. + * + * @category Lexer + * @package SqlParser + * @author Dan Ungureanu + * @license http://opensource.org/licenses/GPL-2.0 GNU Public License + * @see Context + */ +class Lexer +{ - use SqlParser\Exceptions\LexerException; + /** + * A list of methods that are used in lexing the SQL query. + * + * @var array + */ + public static $PARSER_METHODS = array( - if (!defined('USE_UTF_STRINGS')) { + // It is best to put the parsers in order of their complexity + // (ascending) and their occurrence rate (descending). + // + // Conflicts: + // + // 1. `parseDelimiter`, `parseUnknown`, `parseKeyword`, `parseNumber` + // They fight over delimiter. The delimiter may be a keyword, a + // number or almost any character which makes the delimiter one of + // the first tokens that must be parsed. + // + // 1. `parseNumber` and `parseOperator` + // They fight over `+` and `-`. + // + // 2. `parseComment` and `parseOperator` + // They fight over `/` (as in ```/*comment*/``` or ```a / b```) + // + // 3. `parseBool` and `parseKeyword` + // They fight over `TRUE` and `FALSE`. + // + // 4. `parseKeyword` and `parseUnknown` + // They fight over words. `parseUnknown` does not know about + // keywords. - // NOTE: In previous versions of PHP (5.5 and older) the default - // internal encoding is "ISO-8859-1". - // All `mb_` functions must specify the correct encoding, which is - // 'UTF-8' in order to work properly. + 'parseDelimiter', 'parseWhitespace', 'parseNumber', + 'parseComment', 'parseOperator', 'parseBool', 'parseString', + 'parseSymbol', 'parseKeyword', 'parseUnknown' + ); - /** - * Forces usage of `UtfString` if the string is multibyte. - * `UtfString` may be slower, but it gives better results. - * - * @var bool - */ - define('USE_UTF_STRINGS', true); + /** + * Whether errors should throw exceptions or just be stored. + * + * @var bool + * + * @see static::$errors + */ + public $strict = false; + + /** + * The string to be parsed. + * + * @var string|UtfString + */ + public $str = ''; + + /** + * The length of `$str`. + * + * By storing its length, a lot of time is saved, because parsing methods + * would call `strlen` everytime. + * + * @var int + */ + public $len = 0; + + /** + * The index of the last parsed character. + * + * @var int + */ + public $last = 0; + + /** + * Tokens extracted from given strings. + * + * @var TokensList + */ + public $list; + + /** + * The default delimiter. This is used, by default, in all new instances. + * + * @var string + */ + public static $DEFAULT_DELIMITER = ';'; + + /** + * Statements delimiter. + * This may change during lexing. + * + * @var string + */ + public $delimiter; + + /** + * The length of the delimiter. + * + * Because `parseDelimiter` can be called a lot, it would perform a lot of + * calls to `strlen`, which might affect performance when the delimiter is + * big. + * + * @var int + */ + public $delimiterLen; + + /** + * List of errors that occurred during lexing. + * + * Usually, the lexing does not stop once an error occurred because that + * error might be false positive or a partial result (even a bad one) + * might be needed. + * + * @var LexerException[] + * + * @see Lexer::error() + */ + public $errors = array(); + + /** + * Gets the tokens list parsed by a new instance of a lexer. + * + * @param string|UtfString $str The query to be lexed. + * @param bool $strict Whether strict mode should be + * enabled or not. + * @param string $delimiter The delimiter to be used. + * + * @return TokensList + */ + public static function getTokens($str, $strict = false, $delimiter = null) + { + $lexer = new Lexer($str); + return $lexer->list; } /** - * Performs lexical analysis over a SQL statement and splits it in multiple - * tokens. + * Constructor. * - * The output of the lexer is affected by the context of the SQL statement. - * - * @category Lexer - * @package SqlParser - * @author Dan Ungureanu - * @license http://opensource.org/licenses/GPL-2.0 GNU Public License - * @see Context + * @param string|UtfString $str The query to be lexed. + * @param bool $strict Whether strict mode should be + * enabled or not. + * @param string $delimiter The delimiter to be used. */ - class Lexer + public function __construct($str, $strict = false, $delimiter = null) { + // `strlen` is used instead of `mb_strlen` because the lexer needs to + // parse each byte of the input. + $len = ($str instanceof UtfString) ? $str->length() : strlen($str); - /** - * A list of methods that are used in lexing the SQL query. - * - * @var array - */ - public static $PARSER_METHODS = array( + // For multi-byte strings, a new instance of `UtfString` is + // initialized (only if `UtfString` usage is forced. + if (!($str instanceof UtfString)) { + if ((USE_UTF_STRINGS) && ($len !== mb_strlen($str, 'UTF-8'))) { + $str = new UtfString($str); + } + } - // It is best to put the parsers in order of their complexity - // (ascending) and their occurrence rate (descending). - // - // Conflicts: - // - // 1. `parseDelimiter`, `parseUnknown`, `parseKeyword`, `parseNumber` - // They fight over delimiter. The delimiter may be a keyword, a - // number or almost any character which makes the delimiter one of - // the first tokens that must be parsed. - // - // 1. `parseNumber` and `parseOperator` - // They fight over `+` and `-`. - // - // 2. `parseComment` and `parseOperator` - // They fight over `/` (as in ```/*comment*/``` or ```a / b```) - // - // 3. `parseBool` and `parseKeyword` - // They fight over `TRUE` and `FALSE`. - // - // 4. `parseKeyword` and `parseUnknown` - // They fight over words. `parseUnknown` does not know about - // keywords. + $this->str = $str; + $this->len = ($str instanceof UtfString) ? $str->length() : $len; - 'parseDelimiter', 'parseWhitespace', 'parseNumber', - 'parseComment', 'parseOperator', 'parseBool', 'parseString', - 'parseSymbol', 'parseKeyword', 'parseUnknown' + $this->strict = $strict; + + // Setting the delimiter. + $this->setDelimiter( + !empty($delimiter) ? $delimiter : static::$DEFAULT_DELIMITER ); - /** - * Whether errors should throw exceptions or just be stored. - * - * @var bool - * - * @see static::$errors - */ - public $strict = false; + $this->lex(); + } + + /** + * Sets the delimiter. + * + * @param string $delimiter The new delimiter. + */ + public function setDelimiter($delimiter) + { + $this->delimiter = $delimiter; + $this->delimiterLen = strlen($delimiter); + } + + /** + * Parses the string and extracts lexemes. + * + * @return void + */ + public function lex() + { + // TODO: Sometimes, static::parse* functions make unnecessary calls to + // is* functions. For a better performance, some rules can be deduced + // from context. + // For example, in `parseBool` there is no need to compare the token + // every time with `true` and `false`. The first step would be to + // compare with 'true' only and just after that add another letter from + // context and compare again with `false`. + // Another example is `parseComment`. + + $list = new TokensList(); /** - * The string to be parsed. + * Last processed token. * - * @var string|UtfString + * @var Token $lastToken */ - public $str = ''; + $lastToken = null; - /** - * The length of `$str`. - * - * By storing its length, a lot of time is saved, because parsing methods - * would call `strlen` everytime. - * - * @var int - */ - public $len = 0; + for ($this->last = 0, $lastIdx = 0; $this->last < $this->len; $lastIdx = ++$this->last) { + /** + * The new token. + * + * @var Token $token + */ + $token = null; - /** - * The index of the last parsed character. - * - * @var int - */ - public $last = 0; - - /** - * Tokens extracted from given strings. - * - * @var TokensList - */ - public $list; - - /** - * The default delimiter. This is used, by default, in all new instances. - * - * @var string - */ - public static $DEFAULT_DELIMITER = ';'; - - /** - * Statements delimiter. - * This may change during lexing. - * - * @var string - */ - public $delimiter; - - /** - * The length of the delimiter. - * - * Because `parseDelimiter` can be called a lot, it would perform a lot of - * calls to `strlen`, which might affect performance when the delimiter is - * big. - * - * @var int - */ - public $delimiterLen; - - /** - * List of errors that occurred during lexing. - * - * Usually, the lexing does not stop once an error occurred because that - * error might be false positive or a partial result (even a bad one) - * might be needed. - * - * @var LexerException[] - * - * @see Lexer::error() - */ - public $errors = array(); - - /** - * Constructor. - * - * @param string|UtfString $str The query to be lexed. - * @param bool $strict Whether strict mode should be - * enabled or not. - * @param string $delimiter The delimiter to be used. - */ - public function __construct($str, $strict = false, $delimiter = null) - { - // `strlen` is used instead of `mb_strlen` because the lexer needs to - // parse each byte of the input. - $len = ($str instanceof UtfString) ? $str->length() : strlen($str); - - // For multi-byte strings, a new instance of `UtfString` is - // initialized (only if `UtfString` usage is forced. - if (!($str instanceof UtfString)) { - if ((USE_UTF_STRINGS) && ($len !== mb_strlen($str, 'UTF-8'))) { - $str = new UtfString($str); + foreach (static::$PARSER_METHODS as $method) { + if (($token = $this->$method())) { + break; } } - $this->str = $str; - $this->len = ($str instanceof UtfString) ? $str->length() : $len; + if ($token === null) { + // @assert($this->last === $lastIdx); + $token = new Token($this->str[$this->last]); + $this->error( + __('Unexpected character.'), + $this->str[$this->last], + $this->last + ); + } elseif (($lastToken !== null) + && ($token->type === Token::TYPE_SYMBOL) + && ($token->flags & Token::FLAG_SYMBOL_VARIABLE) + && (($lastToken->type === Token::TYPE_STRING) + || (($lastToken->type === Token::TYPE_SYMBOL) + && ($lastToken->flags & Token::FLAG_SYMBOL_BACKTICK))) + ) { + // Handles ```... FROM 'user'@'%' ...```. + $lastToken->token .= $token->token; + $lastToken->type = Token::TYPE_SYMBOL; + $lastToken->flags = Token::FLAG_SYMBOL_USER; + $lastToken->value .= '@' . $token->value; + continue; + } elseif (($lastToken !== null) + && ($token->type === Token::TYPE_KEYWORD) + && ($lastToken->type === Token::TYPE_OPERATOR) + && ($lastToken->value === '.') + ) { + // Handles ```... tbl.FROM ...```. In this case, FROM is not + // a reserved word. + $token->type = Token::TYPE_NONE; + $token->flags = 0; + $token->value = $token->token; + } - $this->strict = $strict; + $token->position = $lastIdx; - // Setting the delimiter. - $this->setDelimiter( - !empty($delimiter) ? $delimiter : static::$DEFAULT_DELIMITER - ); + $list->tokens[$list->count++] = $token; - $this->lex(); - } - - /** - * Sets the delimiter. - * - * @param string $delimiter The new delimiter. - */ - public function setDelimiter($delimiter) - { - $this->delimiter = $delimiter; - $this->delimiterLen = strlen($delimiter); - } - - /** - * Parses the string and extracts lexemes. - * - * @return void - */ - public function lex() - { - // TODO: Sometimes, static::parse* functions make unnecessary calls to - // is* functions. For a better performance, some rules can be deduced - // from context. - // For example, in `parseBool` there is no need to compare the token - // every time with `true` and `false`. The first step would be to - // compare with 'true' only and just after that add another letter from - // context and compare again with `false`. - // Another example is `parseComment`. - - $list = new TokensList(); - - /** - * Last processed token. - * - * @var Token $lastToken - */ - $lastToken = null; - - for ($this->last = 0, $lastIdx = 0; $this->last < $this->len; $lastIdx = ++$this->last) { - - /** - * The new token. - * - * @var Token $token - */ - $token = null; - - foreach (static::$PARSER_METHODS as $method) { - if (($token = $this->$method())) { - break; - } - } - - if ($token === null) { - // @assert($this->last === $lastIdx); - $token = new Token($this->str[$this->last]); + // Handling delimiters. + if (($token->type === Token::TYPE_NONE) && ($token->value === 'DELIMITER')) { + if ($this->last + 1 >= $this->len) { $this->error( - __('Unexpected character.'), - $this->str[$this->last], - $this->last + __('Expected whitespace(s) before delimiter.'), + '', + $this->last + 1 ); - } elseif (($lastToken !== null) - && ($token->type === Token::TYPE_SYMBOL) - && ($token->flags & Token::FLAG_SYMBOL_VARIABLE) - && (($lastToken->type === Token::TYPE_STRING) - || (($lastToken->type === Token::TYPE_SYMBOL) - && ($lastToken->flags & Token::FLAG_SYMBOL_BACKTICK))) - ) { - // Handles ```... FROM 'user'@'%' ...```. - $lastToken->token .= $token->token; - $lastToken->type = Token::TYPE_SYMBOL; - $lastToken->flags = Token::FLAG_SYMBOL_USER; - $lastToken->value .= '@' . $token->value; continue; - } elseif (($lastToken !== null) - && ($token->type === Token::TYPE_KEYWORD) - && ($lastToken->type === Token::TYPE_OPERATOR) - && ($lastToken->value === '.') - ) { - // Handles ```... tbl.FROM ...```. In this case, FROM is not - // a reserved word. - $token->type = Token::TYPE_NONE; - $token->flags = 0; - $token->value = $token->token; } - $token->position = $lastIdx; - - $list->tokens[$list->count++] = $token; - - // Handling delimiters. - if (($token->type === Token::TYPE_NONE) && ($token->value === 'DELIMITER')) { - if ($this->last + 1 >= $this->len) { - $this->error( - __('Expected whitespace(s) before delimiter.'), - '', - $this->last + 1 - ); - continue; - } - - // Skipping last R (from `delimiteR`) and whitespaces between - // the keyword `DELIMITER` and the actual delimiter. - $pos = ++$this->last; - if (($token = $this->parseWhitespace()) !== null) { - $token->position = $pos; - $list->tokens[$list->count++] = $token; - } - - // Preparing the token that holds the new delimiter. - if ($this->last + 1 >= $this->len) { - $this->error( - __('Expected delimiter.'), - '', - $this->last + 1 - ); - continue; - } - $pos = $this->last + 1; - - // Parsing the delimiter. - $this->delimiter = null; - while ((++$this->last < $this->len) && (!Context::isWhitespace($this->str[$this->last]))) { - $this->delimiter .= $this->str[$this->last]; - } - - if (empty($this->delimiter)) { - $this->error( - __('Expected delimiter.'), - '', - $this->last - ); - $this->delimiter = ';'; - } - - --$this->last; - - // Saving the delimiter and its token. - $this->delimiterLen = strlen($this->delimiter); - $token = new Token($this->delimiter, Token::TYPE_DELIMITER); + // Skipping last R (from `delimiteR`) and whitespaces between + // the keyword `DELIMITER` and the actual delimiter. + $pos = ++$this->last; + if (($token = $this->parseWhitespace()) !== null) { $token->position = $pos; $list->tokens[$list->count++] = $token; } - $lastToken = $token; + // Preparing the token that holds the new delimiter. + if ($this->last + 1 >= $this->len) { + $this->error( + __('Expected delimiter.'), + '', + $this->last + 1 + ); + continue; + } + $pos = $this->last + 1; + + // Parsing the delimiter. + $this->delimiter = null; + while ((++$this->last < $this->len) && (!Context::isWhitespace($this->str[$this->last]))) { + $this->delimiter .= $this->str[$this->last]; + } + + if (empty($this->delimiter)) { + $this->error( + __('Expected delimiter.'), + '', + $this->last + ); + $this->delimiter = ';'; + } + + --$this->last; + + // Saving the delimiter and its token. + $this->delimiterLen = strlen($this->delimiter); + $token = new Token($this->delimiter, Token::TYPE_DELIMITER); + $token->position = $pos; + $list->tokens[$list->count++] = $token; } - // Adding a final delimiter to mark the ending. - $list->tokens[$list->count++] = new Token(null, Token::TYPE_DELIMITER); - - // Saving the tokens list. - $this->list = $list; + $lastToken = $token; } - /** - * Creates a new error log. - * - * @param string $msg The error message. - * @param string $str The character that produced the error. - * @param int $pos The position of the character. - * @param int $code The code of the error. - * - * @throws LexerException Throws the exception, if strict mode is enabled. - * - * @return void - */ - public function error($msg = '', $str = '', $pos = 0, $code = 0) - { - $error = new LexerException($msg, $str, $pos, $code); - if ($this->strict) { - throw $error; - } - $this->errors[] = $error; + // Adding a final delimiter to mark the ending. + $list->tokens[$list->count++] = new Token(null, Token::TYPE_DELIMITER); + + // Saving the tokens list. + $this->list = $list; + } + + /** + * Creates a new error log. + * + * @param string $msg The error message. + * @param string $str The character that produced the error. + * @param int $pos The position of the character. + * @param int $code The code of the error. + * + * @throws LexerException Throws the exception, if strict mode is enabled. + * + * @return void + */ + public function error($msg = '', $str = '', $pos = 0, $code = 0) + { + $error = new LexerException($msg, $str, $pos, $code); + if ($this->strict) { + throw $error; } + $this->errors[] = $error; + } + + /** + * Parses a keyword. + * + * @return Token + */ + public function parseKeyword() + { + $token = ''; /** - * Parses a keyword. + * Value to be returned. * - * @return Token + * @var Token $ret */ - public function parseKeyword() - { - $token = ''; + $ret = null; - /** - * Value to be returned. - * - * @var Token $ret - */ - $ret = null; + /** + * The value of `$this->last` where `$token` ends in `$this->str`. + * + * @var int $iEnd + */ + $iEnd = $this->last; - /** - * The value of `$this->last` where `$token` ends in `$this->str`. - * - * @var int $iEnd - */ - $iEnd = $this->last; + /** + * Whether last parsed character is a whitespace. + * + * @var bool $lastSpace + */ + $lastSpace = false; - /** - * Whether last parsed character is a whitespace. - * - * @var bool $lastSpace - */ - $lastSpace = false; - - for ($j = 1; $j < Context::KEYWORD_MAX_LENGTH && $this->last < $this->len; ++$j, ++$this->last) { - - // Composed keywords shouldn't have more than one whitespace between - // keywords. - if (Context::isWhitespace($this->str[$this->last])) { - if ($lastSpace) { - --$j; // The size of the keyword didn't increase. - continue; - } else { - $lastSpace = true; - } + for ($j = 1; $j < Context::KEYWORD_MAX_LENGTH && $this->last < $this->len; ++$j, ++$this->last) { + // Composed keywords shouldn't have more than one whitespace between + // keywords. + if (Context::isWhitespace($this->str[$this->last])) { + if ($lastSpace) { + --$j; // The size of the keyword didn't increase. + continue; } else { - $lastSpace = false; - } - $token .= $this->str[$this->last]; - if (($this->last + 1 === $this->len) || (Context::isSeparator($this->str[$this->last + 1]))) { - if (($flags = Context::isKeyword($token))) { - $ret = new Token($token, Token::TYPE_KEYWORD, $flags); - $iEnd = $this->last; - - // We don't break so we find longest keyword. - // For example, `OR` and `ORDER` have a common prefix `OR`. - // If we stopped at `OR`, the parsing would be invalid. - } + $lastSpace = true; } + } else { + $lastSpace = false; } - - $this->last = $iEnd; - return $ret; - } - - /** - * Parses an operator. - * - * @return Token - */ - public function parseOperator() - { - $token = ''; - - /** - * Value to be returned. - * - * @var Token $ret - */ - $ret = null; - - /** - * The value of `$this->last` where `$token` ends in `$this->str`. - * - * @var int $iEnd - */ - $iEnd = $this->last; - - for ($j = 1; $j < Context::OPERATOR_MAX_LENGTH && $this->last < $this->len; ++$j, ++$this->last) { - $token .= $this->str[$this->last]; - if ($flags = Context::isOperator($token)) { - $ret = new Token($token, Token::TYPE_OPERATOR, $flags); + $token .= $this->str[$this->last]; + if (($this->last + 1 === $this->len) || (Context::isSeparator($this->str[$this->last + 1]))) { + if (($flags = Context::isKeyword($token))) { + $ret = new Token($token, Token::TYPE_KEYWORD, $flags); $iEnd = $this->last; + + // We don't break so we find longest keyword. + // For example, `OR` and `ORDER` have a common prefix `OR`. + // If we stopped at `OR`, the parsing would be invalid. } } - - $this->last = $iEnd; - return $ret; } + $this->last = $iEnd; + return $ret; + } + + /** + * Parses an operator. + * + * @return Token + */ + public function parseOperator() + { + $token = ''; + /** - * Parses a whitespace. + * Value to be returned. * - * @return Token + * @var Token $ret */ - public function parseWhitespace() - { - $token = $this->str[$this->last]; + $ret = null; - if (!Context::isWhitespace($token)) { - return null; + /** + * The value of `$this->last` where `$token` ends in `$this->str`. + * + * @var int $iEnd + */ + $iEnd = $this->last; + + for ($j = 1; $j < Context::OPERATOR_MAX_LENGTH && $this->last < $this->len; ++$j, ++$this->last) { + $token .= $this->str[$this->last]; + if ($flags = Context::isOperator($token)) { + $ret = new Token($token, Token::TYPE_OPERATOR, $flags); + $iEnd = $this->last; } + } - while ((++$this->last < $this->len) && (Context::isWhitespace($this->str[$this->last]))) { + $this->last = $iEnd; + return $ret; + } + + /** + * Parses a whitespace. + * + * @return Token + */ + public function parseWhitespace() + { + $token = $this->str[$this->last]; + + if (!Context::isWhitespace($token)) { + return null; + } + + while ((++$this->last < $this->len) && (Context::isWhitespace($this->str[$this->last]))) { + $token .= $this->str[$this->last]; + } + + --$this->last; + return new Token($token, Token::TYPE_WHITESPACE); + } + + /** + * Parses a comment. + * + * @return Token + */ + public function parseComment() + { + $iBak = $this->last; + $token = $this->str[$this->last]; + + // Bash style comments. (#comment\n) + if (Context::isComment($token)) { + while ((++$this->last < $this->len) && ($this->str[$this->last] !== "\n")) { $token .= $this->str[$this->last]; } - - --$this->last; - return new Token($token, Token::TYPE_WHITESPACE); + $token .= "\n"; // Adding the line ending. + return new Token($token, Token::TYPE_COMMENT, Token::FLAG_COMMENT_BASH); } - /** - * Parses a comment. - * - * @return Token - */ - public function parseComment() - { - $iBak = $this->last; - $token = $this->str[$this->last]; - - // Bash style comments. (#comment\n) + // C style comments. (/*comment*\/) + if (++$this->last < $this->len) { + $token .= $this->str[$this->last]; if (Context::isComment($token)) { - while ((++$this->last < $this->len) && ($this->str[$this->last] !== "\n")) { - $token .= $this->str[$this->last]; - } - $token .= "\n"; // Adding the line ending. - return new Token($token, Token::TYPE_COMMENT, Token::FLAG_COMMENT_BASH); - } + $flags = Token::FLAG_COMMENT_C; - // C style comments. (/*comment*\/) - if (++$this->last < $this->len) { - $token .= $this->str[$this->last]; - if (Context::isComment($token)) { - $flags = Token::FLAG_COMMENT_C; - - // This comment already ended. It may be a part of a - // previous MySQL specific command. - if ($token === '*/') { - return new Token($token, Token::TYPE_COMMENT, $flags); - } - - // Checking if this is a MySQL-specific command. - if (($this->last + 1 < $this->len) && ($this->str[$this->last + 1] === '!')) { - $flags |= Token::FLAG_COMMENT_MYSQL_CMD; - $token .= $this->str[++$this->last]; - - while ((++$this->last < $this->len) - && ('0' <= $this->str[$this->last]) - && ($this->str[$this->last] <= '9') - ) { - $token .= $this->str[$this->last]; - } - --$this->last; - - // We split this comment and parse only its beginning - // here. - return new Token($token, Token::TYPE_COMMENT, $flags); - } - - // Parsing the comment. - while ((++$this->last < $this->len) - && (($this->str[$this->last - 1] !== '*') || ($this->str[$this->last] !== '/')) - ) { - $token .= $this->str[$this->last]; - } - - // Adding the ending. - if ($this->last < $this->len) { - $token .= $this->str[$this->last]; - } + // This comment already ended. It may be a part of a + // previous MySQL specific command. + if ($token === '*/') { return new Token($token, Token::TYPE_COMMENT, $flags); } - } - // SQL style comments. (-- comment\n) - if (++$this->last < $this->len) { - $token .= $this->str[$this->last]; - if (Context::isComment($token)) { - // Checking if this comment did not end already (```--\n```). - if ($this->str[$this->last] !== "\n") { - while ((++$this->last < $this->len) && ($this->str[$this->last] !== "\n")) { - $token .= $this->str[$this->last]; - } - $token .= "\n"; // Adding the line ending. + // Checking if this is a MySQL-specific command. + if (($this->last + 1 < $this->len) && ($this->str[$this->last + 1] === '!')) { + $flags |= Token::FLAG_COMMENT_MYSQL_CMD; + $token .= $this->str[++$this->last]; + + while ((++$this->last < $this->len) + && ('0' <= $this->str[$this->last]) + && ($this->str[$this->last] <= '9') + ) { + $token .= $this->str[$this->last]; } - return new Token($token, Token::TYPE_COMMENT, Token::FLAG_COMMENT_SQL); - } - } + --$this->last; - $this->last = $iBak; + // We split this comment and parse only its beginning + // here. + return new Token($token, Token::TYPE_COMMENT, $flags); + } + + // Parsing the comment. + while ((++$this->last < $this->len) + && (($this->str[$this->last - 1] !== '*') || ($this->str[$this->last] !== '/')) + ) { + $token .= $this->str[$this->last]; + } + + // Adding the ending. + if ($this->last < $this->len) { + $token .= $this->str[$this->last]; + } + return new Token($token, Token::TYPE_COMMENT, $flags); + } + } + + // SQL style comments. (-- comment\n) + if (++$this->last < $this->len) { + $token .= $this->str[$this->last]; + if (Context::isComment($token)) { + // Checking if this comment did not end already (```--\n```). + if ($this->str[$this->last] !== "\n") { + while ((++$this->last < $this->len) && ($this->str[$this->last] !== "\n")) { + $token .= $this->str[$this->last]; + } + $token .= "\n"; // Adding the line ending. + } + return new Token($token, Token::TYPE_COMMENT, Token::FLAG_COMMENT_SQL); + } + } + + $this->last = $iBak; + return null; + } + + /** + * Parses a boolean. + * + * @return Token + */ + public function parseBool() + { + if ($this->last + 3 >= $this->len) { + // At least `min(strlen('TRUE'), strlen('FALSE'))` characters are + // required. return null; } - /** - * Parses a boolean. - * - * @return Token - */ - public function parseBool() - { - if ($this->last + 3 >= $this->len) { - // At least `min(strlen('TRUE'), strlen('FALSE'))` characters are - // required. - return null; - } - - $iBak = $this->last; - $token = $this->str[$this->last] . $this->str[++$this->last] - . $this->str[++$this->last] . $this->str[++$this->last]; // _TRUE_ or _FALS_e + $iBak = $this->last; + $token = $this->str[$this->last] . $this->str[++$this->last] + . $this->str[++$this->last] . $this->str[++$this->last]; // _TRUE_ or _FALS_e + if (Context::isBool($token)) { + return new Token($token, Token::TYPE_BOOL); + } elseif (++$this->last < $this->len) { + $token .= $this->str[$this->last]; // fals_E_ if (Context::isBool($token)) { - return new Token($token, Token::TYPE_BOOL); - } elseif (++$this->last < $this->len) { - $token .= $this->str[$this->last]; // fals_E_ - if (Context::isBool($token)) { - return new Token($token, Token::TYPE_BOOL, 1); - } + return new Token($token, Token::TYPE_BOOL, 1); } - - $this->last = $iBak; - return null; } - /** - * Parses a number. - * - * @return Token - */ - public function parseNumber() - { - // A rudimentary state machine is being used to parse numbers due to - // the various forms of their notation. - // - // Below are the states of the machines and the conditions to change - // the state. - // - // 1 --------------------[ + or - ]-------------------> 1 - // 1 -------------------[ 0x or 0X ]------------------> 2 - // 1 --------------------[ 0 to 9 ]-------------------> 3 - // 1 -----------------------[ . ]---------------------> 4 - // 1 -----------------------[ b ]---------------------> 7 - // - // 2 --------------------[ 0 to F ]-------------------> 2 - // - // 3 --------------------[ 0 to 9 ]-------------------> 3 - // 3 -----------------------[ . ]---------------------> 4 - // 3 --------------------[ e or E ]-------------------> 5 - // - // 4 --------------------[ 0 to 9 ]-------------------> 4 - // 4 --------------------[ e or E ]-------------------> 5 - // - // 5 ---------------[ + or - or 0 to 9 ]--------------> 6 - // - // 7 -----------------------[ ' ]---------------------> 8 - // - // 8 --------------------[ 0 or 1 ]-------------------> 8 - // 8 -----------------------[ ' ]---------------------> 9 - // - // State 1 may be reached by negative numbers. - // State 2 is reached only by hex numbers. - // State 4 is reached only by float numbers. - // State 5 is reached only by numbers in approximate form. - // State 7 is reached only by numbers in bit representation. - // - // Valid final states are: 2, 3, 4 and 6. Any parsing that finished in a - // state other than these is invalid. - $iBak = $this->last; - $token = ''; - $flags = 0; - $state = 1; - for (; $this->last < $this->len; ++$this->last) { - if ($state === 1) { - if ($this->str[$this->last] === '-') { - $flags |= Token::FLAG_NUMBER_NEGATIVE; - } elseif (($this->last + 1 < $this->len) - && ($this->str[$this->last] === '0') - && (($this->str[$this->last + 1] === 'x') - || ($this->str[$this->last + 1] === 'X')) - ) { - $token .= $this->str[$this->last++]; - $state = 2; - } elseif (($this->str[$this->last] >= '0') && ($this->str[$this->last] <= '9')) { - $state = 3; - } elseif ($this->str[$this->last] === '.') { - $state = 4; - } elseif ($this->str[$this->last] === 'b') { - $state = 7; - } elseif ($this->str[$this->last] !== '+') { - // `+` is a valid character in a number. - break; - } - } elseif ($state === 2) { - $flags |= Token::FLAG_NUMBER_HEX; - if (!((($this->str[$this->last] >= '0') && ($this->str[$this->last] <= '9')) - || (($this->str[$this->last] >= 'A') && ($this->str[$this->last] <= 'F')) - || (($this->str[$this->last] >= 'a') && ($this->str[$this->last] <= 'f'))) - ) { - break; - } - } elseif ($state === 3) { - if ($this->str[$this->last] === '.') { - $state = 4; - } elseif (($this->str[$this->last] === 'e') || ($this->str[$this->last] === 'E')) { - $state = 5; - } elseif (($this->str[$this->last] < '0') || ($this->str[$this->last] > '9')) { - // Just digits and `.`, `e` and `E` are valid characters. - break; - } - } elseif ($state === 4) { - $flags |= Token::FLAG_NUMBER_FLOAT; - if (($this->str[$this->last] === 'e') || ($this->str[$this->last] === 'E')) { - $state = 5; - } elseif (($this->str[$this->last] < '0') || ($this->str[$this->last] > '9')) { - // Just digits, `e` and `E` are valid characters. - break; - } - } elseif ($state === 5) { - $flags |= Token::FLAG_NUMBER_APPROXIMATE; - if (($this->str[$this->last] === '+') || ($this->str[$this->last] === '-') - || ((($this->str[$this->last] >= '0') && ($this->str[$this->last] <= '9'))) - ) { - $state = 6; - } else { - break; - } - } elseif ($state === 6) { - if (($this->str[$this->last] < '0') || ($this->str[$this->last] > '9')) { - // Just digits are valid characters. - break; - } - } elseif ($state === 7) { - $flags |= Token::FLAG_NUMBER_BINARY; - if ($this->str[$this->last] === '\'') { - $state = 8; - } else { - break; - } - } elseif ($state === 8) { - if ($this->str[$this->last] === '\'') { - $state = 9; - } elseif (($this->str[$this->last] !== '0') - && ($this->str[$this->last] !== '1') - ) { - break; - } - } elseif ($state === 9) { + $this->last = $iBak; + return null; + } + + /** + * Parses a number. + * + * @return Token + */ + public function parseNumber() + { + // A rudimentary state machine is being used to parse numbers due to + // the various forms of their notation. + // + // Below are the states of the machines and the conditions to change + // the state. + // + // 1 --------------------[ + or - ]-------------------> 1 + // 1 -------------------[ 0x or 0X ]------------------> 2 + // 1 --------------------[ 0 to 9 ]-------------------> 3 + // 1 -----------------------[ . ]---------------------> 4 + // 1 -----------------------[ b ]---------------------> 7 + // + // 2 --------------------[ 0 to F ]-------------------> 2 + // + // 3 --------------------[ 0 to 9 ]-------------------> 3 + // 3 -----------------------[ . ]---------------------> 4 + // 3 --------------------[ e or E ]-------------------> 5 + // + // 4 --------------------[ 0 to 9 ]-------------------> 4 + // 4 --------------------[ e or E ]-------------------> 5 + // + // 5 ---------------[ + or - or 0 to 9 ]--------------> 6 + // + // 7 -----------------------[ ' ]---------------------> 8 + // + // 8 --------------------[ 0 or 1 ]-------------------> 8 + // 8 -----------------------[ ' ]---------------------> 9 + // + // State 1 may be reached by negative numbers. + // State 2 is reached only by hex numbers. + // State 4 is reached only by float numbers. + // State 5 is reached only by numbers in approximate form. + // State 7 is reached only by numbers in bit representation. + // + // Valid final states are: 2, 3, 4 and 6. Any parsing that finished in a + // state other than these is invalid. + $iBak = $this->last; + $token = ''; + $flags = 0; + $state = 1; + for (; $this->last < $this->len; ++$this->last) { + if ($state === 1) { + if ($this->str[$this->last] === '-') { + $flags |= Token::FLAG_NUMBER_NEGATIVE; + } elseif (($this->last + 1 < $this->len) + && ($this->str[$this->last] === '0') + && (($this->str[$this->last + 1] === 'x') + || ($this->str[$this->last + 1] === 'X')) + ) { + $token .= $this->str[$this->last++]; + $state = 2; + } elseif (($this->str[$this->last] >= '0') && ($this->str[$this->last] <= '9')) { + $state = 3; + } elseif ($this->str[$this->last] === '.') { + $state = 4; + } elseif ($this->str[$this->last] === 'b') { + $state = 7; + } elseif ($this->str[$this->last] !== '+') { + // `+` is a valid character in a number. + break; + } + } elseif ($state === 2) { + $flags |= Token::FLAG_NUMBER_HEX; + if (!((($this->str[$this->last] >= '0') && ($this->str[$this->last] <= '9')) + || (($this->str[$this->last] >= 'A') && ($this->str[$this->last] <= 'F')) + || (($this->str[$this->last] >= 'a') && ($this->str[$this->last] <= 'f'))) + ) { + break; + } + } elseif ($state === 3) { + if ($this->str[$this->last] === '.') { + $state = 4; + } elseif (($this->str[$this->last] === 'e') || ($this->str[$this->last] === 'E')) { + $state = 5; + } elseif (($this->str[$this->last] < '0') || ($this->str[$this->last] > '9')) { + // Just digits and `.`, `e` and `E` are valid characters. + break; + } + } elseif ($state === 4) { + $flags |= Token::FLAG_NUMBER_FLOAT; + if (($this->str[$this->last] === 'e') || ($this->str[$this->last] === 'E')) { + $state = 5; + } elseif (($this->str[$this->last] < '0') || ($this->str[$this->last] > '9')) { + // Just digits, `e` and `E` are valid characters. + break; + } + } elseif ($state === 5) { + $flags |= Token::FLAG_NUMBER_APPROXIMATE; + if (($this->str[$this->last] === '+') || ($this->str[$this->last] === '-') + || ((($this->str[$this->last] >= '0') && ($this->str[$this->last] <= '9'))) + ) { + $state = 6; + } else { + break; + } + } elseif ($state === 6) { + if (($this->str[$this->last] < '0') || ($this->str[$this->last] > '9')) { + // Just digits are valid characters. + break; + } + } elseif ($state === 7) { + $flags |= Token::FLAG_NUMBER_BINARY; + if ($this->str[$this->last] === '\'') { + $state = 8; + } else { + break; + } + } elseif ($state === 8) { + if ($this->str[$this->last] === '\'') { + $state = 9; + } elseif (($this->str[$this->last] !== '0') + && ($this->str[$this->last] !== '1') + ) { + break; + } + } elseif ($state === 9) { + break; + } + $token .= $this->str[$this->last]; + } + if (($state === 2) || ($state === 3) + || (($token !== '.') && ($state === 4)) + || ($state === 6) || ($state === 9) + ) { + --$this->last; + return new Token($token, Token::TYPE_NUMBER, $flags); + } + $this->last = $iBak; + return null; + } + + /** + * Parses a string. + * + * @param string $quote Additional starting symbol. + * + * @return Token + */ + public function parseString($quote = '') + { + $token = $this->str[$this->last]; + if ((!($flags = Context::isString($token))) && ($token !== $quote)) { + return null; + } + $quote = $token; + + while (++$this->last < $this->len) { + if (($this->last + 1 < $this->len) + && ((($this->str[$this->last] === $quote) && ($this->str[$this->last + 1] === $quote)) + || (($this->str[$this->last] === '\\') && ($quote !== '`'))) + ) { + $token .= $this->str[$this->last] . $this->str[++$this->last]; + } else { + if ($this->str[$this->last] === $quote) { break; } $token .= $this->str[$this->last]; } - if (($state === 2) || ($state === 3) - || (($token !== '.') && ($state === 4)) - || ($state === 6) || ($state === 9) - ) { - --$this->last; - return new Token($token, Token::TYPE_NUMBER, $flags); - } - $this->last = $iBak; + } + + if (($this->last >= $this->len) || ($this->str[$this->last] !== $quote)) { + $this->error( + sprintf( + __('Ending quote %1$s was expected.'), + $quote + ), + '', + $this->last + ); + } else { + $token .= $this->str[$this->last]; + } + return new Token($token, Token::TYPE_STRING, $flags); + } + + /** + * Parses a symbol. + * + * @return Token + */ + public function parseSymbol() + { + $token = $this->str[$this->last]; + if (!($flags = Context::isSymbol($token))) { return null; } - /** - * Parses a string. - * - * @param string $quote Additional starting symbol. - * - * @return Token - */ - public function parseString($quote = '') - { - $token = $this->str[$this->last]; - if ((!($flags = Context::isString($token))) && ($token !== $quote)) { + if ($flags & Token::FLAG_SYMBOL_VARIABLE) { + if ($this->str[++$this->last] === '@') { + // This is a system variable (e.g. `@@hostname`). + $token .= $this->str[$this->last++]; + $flags |= Token::FLAG_SYMBOL_SYSTEM; + } + } else { + $token = ''; + } + + $str = null; + + if ($this->last < $this->len) { + if (($str = $this->parseString('`')) === null) { + if (($str = static::parseUnknown()) === null) { + $this->error( + __('Variable name was expected.'), + $this->str[$this->last], + $this->last + ); + } + } + } + + if ($str !== null) { + $token .= $str->token; + } + + return new Token($token, Token::TYPE_SYMBOL, $flags); + } + + /** + * Parses unknown parts of the query. + * + * @return Token + */ + public function parseUnknown() + { + $token = $this->str[$this->last]; + if (Context::isSeparator($token)) { + return null; + } + while ((++$this->last < $this->len) && (!Context::isSeparator($this->str[$this->last]))) { + $token .= $this->str[$this->last]; + } + --$this->last; + return new Token($token); + } + + /** + * Parses the delimiter of the query. + * + * @return Token + */ + public function parseDelimiter() + { + $idx = 0; + + while (($idx < $this->delimiterLen) && ($this->last + $idx < $this->len)) { + if ($this->delimiter[$idx] !== $this->str[$this->last + $idx]) { return null; } - $quote = $token; - - while (++$this->last < $this->len) { - if (($this->last + 1 < $this->len) - && ((($this->str[$this->last] === $quote) && ($this->str[$this->last + 1] === $quote)) - || (($this->str[$this->last] === '\\') && ($quote !== '`'))) - ) { - $token .= $this->str[$this->last] . $this->str[++$this->last]; - } else { - if ($this->str[$this->last] === $quote) { - break; - } - $token .= $this->str[$this->last]; - } - } - - if (($this->last >= $this->len) || ($this->str[$this->last] !== $quote)) { - $this->error( - sprintf( - __('Ending quote %1$s was expected.'), - $quote - ), - '', - $this->last - ); - } else { - $token .= $this->str[$this->last]; - } - return new Token($token, Token::TYPE_STRING, $flags); + ++$idx; } - /** - * Parses a symbol. - * - * @return Token - */ - public function parseSymbol() - { - $token = $this->str[$this->last]; - if (!($flags = Context::isSymbol($token))) { - return null; - } - - if ($flags & Token::FLAG_SYMBOL_VARIABLE) { - if ($this->str[++$this->last] === '@') { - // This is a system variable (e.g. `@@hostname`). - $token .= $this->str[$this->last++]; - $flags |= Token::FLAG_SYMBOL_SYSTEM; - } - } else { - $token = ''; - } - - $str = null; - - if ($this->last < $this->len) { - if (($str = $this->parseString('`')) === null) { - if (($str = static::parseUnknown()) === null) { - $this->error( - __('Variable name was expected.'), - $this->str[$this->last], - $this->last - ); - } - } - } - - if ($str !== null) { - $token .= $str->token; - } - - return new Token($token, Token::TYPE_SYMBOL, $flags); - } - - /** - * Parses unknown parts of the query. - * - * @return Token - */ - public function parseUnknown() - { - $token = $this->str[$this->last]; - if (Context::isSeparator($token)) { - return null; - } - while ((++$this->last < $this->len) && (!Context::isSeparator($this->str[$this->last]))) { - $token .= $this->str[$this->last]; - } - --$this->last; - return new Token($token); - } - - /** - * Parses the delimiter of the query. - * - * @return Token - */ - public function parseDelimiter() - { - $idx = 0; - - while (($idx < $this->delimiterLen) && ($this->last + $idx < $this->len)) { - if ($this->delimiter[$idx] !== $this->str[$this->last + $idx]) { - return null; - } - ++$idx; - } - - $this->last += $this->delimiterLen - 1; - return new Token($this->delimiter, Token::TYPE_DELIMITER); - } + $this->last += $this->delimiterLen - 1; + return new Token($this->delimiter, Token::TYPE_DELIMITER); } } diff --git a/libraries/sql-parser/src/Parser.php b/libraries/sql-parser/src/Parser.php index 5b74f33982..1280d7287b 100644 --- a/libraries/sql-parser/src/Parser.php +++ b/libraries/sql-parser/src/Parser.php @@ -7,541 +7,528 @@ * * @package SqlParser */ +namespace SqlParser; -namespace { +require_once 'common.php'; - if (!function_exists('__')) { +use SqlParser\Exceptions\ParserException; +use SqlParser\Statements\SelectStatement; +use SqlParser\Statements\TransactionStatement; - /** - * Translates the given string. - * - * @param string $str String to be translated. - * - * @return string - */ - function __($str) - { - return $str; - } - } -} - -namespace SqlParser { - - use SqlParser\Exceptions\ParserException; - use SqlParser\Statements\SelectStatement; - use SqlParser\Statements\TransactionStatement; +/** + * Takes multiple tokens (contained in a Lexer instance) as input and builds a + * parse tree. + * + * @category Parser + * @package SqlParser + * @author Dan Ungureanu + * @license http://opensource.org/licenses/GPL-2.0 GNU Public License + */ +class Parser +{ /** - * Takes multiple tokens (contained in a Lexer instance) as input and builds a - * parse tree. + * Array of classes that are used in parsing the SQL statements. * - * @category Parser - * @package SqlParser - * @author Dan Ungureanu - * @license http://opensource.org/licenses/GPL-2.0 GNU Public License + * @var array */ - class Parser + public static $STATEMENT_PARSERS = array( + + // MySQL Utility Statements + 'EXPLAIN' => 'SqlParser\\Statements\\ExplainStatement', + 'DESCRIBE' => 'SqlParser\\Statements\\ExplainStatement', + 'HELP' => '', + 'USE' => '', + 'STATUS' => '', + + // Table Maintenance Statements + // https://dev.mysql.com/doc/refman/5.7/en/table-maintenance-sql.html + 'ANALYZE' => 'SqlParser\\Statements\\AnalyzeStatement', + 'BACKUP' => 'SqlParser\\Statements\\BackupStatement', + 'CHECK' => 'SqlParser\\Statements\\CheckStatement', + 'CHECKSUM' => 'SqlParser\\Statements\\ChecksumStatement', + 'OPTIMIZE' => 'SqlParser\\Statements\\OptimizeStatement', + 'REPAIR' => 'SqlParser\\Statements\\RepairStatement', + 'RESTORE' => 'SqlParser\\Statements\\RestoreStatement', + + // Database Administration Statements + // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-server-administration.html + 'SET' => 'SqlParser\\Statements\\SetStatement', + 'SHOW' => 'SqlParser\\Statements\\ShowStatement', + + // Data Definition Statements. + // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-data-definition.html + 'ALTER' => 'SqlParser\\Statements\\AlterStatement', + 'CREATE' => 'SqlParser\\Statements\\CreateStatement', + 'DROP' => 'SqlParser\\Statements\\DropStatement', + 'RENAME' => 'SqlParser\\Statements\\RenameStatement', + 'TRUNCATE' => 'SqlParser\\Statements\\TruncateStatement', + + // Data Manipulation Statements. + // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-data-manipulation.html + 'CALL' => 'SqlParser\\Statements\\CallStatement', + 'DELETE' => 'SqlParser\\Statements\\DeleteStatement', + 'DO' => '', + 'HANDLER' => '', + 'INSERT' => 'SqlParser\\Statements\\InsertStatement', + 'LOAD' => '', + 'REPLACE' => 'SqlParser\\Statements\\ReplaceStatement', + 'SELECT' => 'SqlParser\\Statements\\SelectStatement', + 'UPDATE' => 'SqlParser\\Statements\\UpdateStatement', + + // Prepared Statements. + // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-prepared-statements.html + 'PREPARE' => '', + 'EXECUTE' => '', + + // Transactional and Locking Statements + // https://dev.mysql.com/doc/refman/5.7/en/commit.html + 'START TRANSACTION' => 'SqlParser\\Statements\\TransactionStatement', + 'BEGIN' => 'SqlParser\\Statements\\TransactionStatement', + 'COMMIT' => 'SqlParser\\Statements\\TransactionStatement', + 'ROLLBACK' => 'SqlParser\\Statements\\TransactionStatement', + ); + + /** + * Array of classes that are used in parsing SQL components. + * + * @var array + */ + public static $KEYWORD_PARSERS = array( + + // This is not a proper keyword and was added here to help the + // formatter. + 'PARTITION BY' => array(), + 'SUBPARTITION BY' => array(), + + // This is not a proper keyword and was added here to help the + // builder. + '_OPTIONS' => array( + 'class' => 'SqlParser\\Components\\OptionsArray', + 'field' => 'options', + ), + 'UNION' => array( + 'class' => 'SqlParser\\Components\\UnionKeyword', + 'field' => 'union', + ), + + // Actual clause parsers. + 'ALTER' => array( + 'class' => 'SqlParser\\Components\\Expression', + 'field' => 'table', + 'options' => array('skipColumn' => true), + ), + 'ANALYZE' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'BACKUP' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'CALL' => array( + 'class' => 'SqlParser\\Components\\FunctionCall', + 'field' => 'call', + ), + 'CHECK' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'CHECKSUM' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'DROP' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'fields', + 'options' => array('skipColumn' => true), + ), + 'FROM' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'from', + 'options' => array('skipColumn' => true), + ), + 'GROUP BY' => array( + 'class' => 'SqlParser\\Components\\OrderKeyword', + 'field' => 'group', + ), + 'HAVING' => array( + 'class' => 'SqlParser\\Components\\Condition', + 'field' => 'having', + ), + 'INTO' => array( + 'class' => 'SqlParser\\Components\\IntoKeyword', + 'field' => 'into', + ), + 'JOIN' => array( + 'class' => 'SqlParser\\Components\\JoinKeyword', + 'field' => 'join', + ), + 'LEFT JOIN' => array( + 'class' => 'SqlParser\\Components\\JoinKeyword', + 'field' => 'join', + ), + 'LEFT OUTER JOIN' => array( + 'class' => 'SqlParser\\Components\\JoinKeyword', + 'field' => 'join', + ), + 'RIGHT JOIN' => array( + 'class' => 'SqlParser\\Components\\JoinKeyword', + 'field' => 'join', + ), + 'RIGHT OUTER JOIN' => array( + 'class' => 'SqlParser\\Components\\JoinKeyword', + 'field' => 'join', + ), + 'INNER JOIN' => array( + 'class' => 'SqlParser\\Components\\JoinKeyword', + 'field' => 'join', + ), + 'FULL JOIN' => array( + 'class' => 'SqlParser\\Components\\JoinKeyword', + 'field' => 'join', + ), + 'LIMIT' => array( + 'class' => 'SqlParser\\Components\\Limit', + 'field' => 'limit', + ), + 'OPTIMIZE' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'ORDER BY' => array( + 'class' => 'SqlParser\\Components\\OrderKeyword', + 'field' => 'order', + ), + 'PARTITION' => array( + 'class' => 'SqlParser\\Components\\ArrayObj', + 'field' => 'partition', + ), + 'PROCEDURE' => array( + 'class' => 'SqlParser\\Components\\FunctionCall', + 'field' => 'procedure', + ), + 'RENAME' => array( + 'class' => 'SqlParser\\Components\\RenameOperation', + 'field' => 'renames', + ), + 'REPAIR' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'RESTORE' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'SET' => array( + 'class' => 'SqlParser\\Components\\SetOperation', + 'field' => 'set', + ), + 'SELECT' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'expr', + ), + 'TRUNCATE' => array( + 'class' => 'SqlParser\\Components\\Expression', + 'field' => 'table', + 'options' => array('skipColumn' => true), + ), + 'UPDATE' => array( + 'class' => 'SqlParser\\Components\\ExpressionArray', + 'field' => 'tables', + 'options' => array('skipColumn' => true), + ), + 'VALUE' => array( + 'class' => 'SqlParser\\Components\\Array2d', + 'field' => 'values', + ), + 'VALUES' => array( + 'class' => 'SqlParser\\Components\\Array2d', + 'field' => 'values', + ), + 'WHERE' => array( + 'class' => 'SqlParser\\Components\\Condition', + 'field' => 'where', + ), + + ); + + /** + * The list of tokens that are parsed. + * + * @var TokensList + */ + public $list; + + /** + * Whether errors should throw exceptions or just be stored. + * + * @var bool + * + * @see static::$errors + */ + public $strict = false; + + /** + * List of errors that occurred during parsing. + * + * Usually, the parsing does not stop once an error occurred because that + * error might be a false positive or a partial result (even a bad one) + * might be needed. + * + * @var ParserException[] + * + * @see Parser::error() + */ + public $errors = array(); + + /** + * List of statements parsed. + * + * @var Statement[] + */ + public $statements = array(); + + /** + * Constructor. + * + * @param string|UtfString|TokensList $list The list of tokens to be parsed. + * @param bool $strict Whether strict mode should be enabled or not. + */ + public function __construct($list = null, $strict = false) + { + if ((is_string($list)) || ($list instanceof UtfString)) { + $lexer = new Lexer($list, $strict); + $this->list = $lexer->list; + } elseif ($list instanceof TokensList) { + $this->list = $list; + } + + $this->strict = $strict; + + if ($list !== null) { + $this->parse(); + } + } + + /** + * Builds the parse trees. + * + * @return void + */ + public function parse() { /** - * Array of classes that are used in parsing the SQL statements. + * Last transaction. * - * @var array + * @var TransactionStatement $lastTransaction */ - public static $STATEMENT_PARSERS = array( - - // MySQL Utility Statements - 'EXPLAIN' => 'SqlParser\\Statements\\ExplainStatement', - 'DESCRIBE' => 'SqlParser\\Statements\\ExplainStatement', - 'HELP' => '', - 'USE' => '', - 'STATUS' => '', - - // Table Maintenance Statements - // https://dev.mysql.com/doc/refman/5.7/en/table-maintenance-sql.html - 'ANALYZE' => 'SqlParser\\Statements\\AnalyzeStatement', - 'BACKUP' => 'SqlParser\\Statements\\BackupStatement', - 'CHECK' => 'SqlParser\\Statements\\CheckStatement', - 'CHECKSUM' => 'SqlParser\\Statements\\ChecksumStatement', - 'OPTIMIZE' => 'SqlParser\\Statements\\OptimizeStatement', - 'REPAIR' => 'SqlParser\\Statements\\RepairStatement', - 'RESTORE' => 'SqlParser\\Statements\\RestoreStatement', - - // Database Administration Statements - // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-server-administration.html - 'SET' => 'SqlParser\\Statements\\SetStatement', - 'SHOW' => 'SqlParser\\Statements\\ShowStatement', - - // Data Definition Statements. - // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-data-definition.html - 'ALTER' => 'SqlParser\\Statements\\AlterStatement', - 'CREATE' => 'SqlParser\\Statements\\CreateStatement', - 'DROP' => 'SqlParser\\Statements\\DropStatement', - 'RENAME' => 'SqlParser\\Statements\\RenameStatement', - 'TRUNCATE' => 'SqlParser\\Statements\\TruncateStatement', - - // Data Manipulation Statements. - // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-data-manipulation.html - 'CALL' => 'SqlParser\\Statements\\CallStatement', - 'DELETE' => 'SqlParser\\Statements\\DeleteStatement', - 'DO' => '', - 'HANDLER' => '', - 'INSERT' => 'SqlParser\\Statements\\InsertStatement', - 'LOAD' => '', - 'REPLACE' => 'SqlParser\\Statements\\ReplaceStatement', - 'SELECT' => 'SqlParser\\Statements\\SelectStatement', - 'UPDATE' => 'SqlParser\\Statements\\UpdateStatement', - - // Prepared Statements. - // https://dev.mysql.com/doc/refman/5.7/en/sql-syntax-prepared-statements.html - 'PREPARE' => '', - 'EXECUTE' => '', - - // Transactional and Locking Statements - // https://dev.mysql.com/doc/refman/5.7/en/commit.html - 'START TRANSACTION' => 'SqlParser\\Statements\\TransactionStatement', - 'BEGIN' => 'SqlParser\\Statements\\TransactionStatement', - 'COMMIT' => 'SqlParser\\Statements\\TransactionStatement', - 'ROLLBACK' => 'SqlParser\\Statements\\TransactionStatement', - ); + $lastTransaction = null; /** - * Array of classes that are used in parsing SQL components. + * Last parsed statement. * - * @var array + * @var Statement $lastStatement */ - public static $KEYWORD_PARSERS = array( - - // This is not a proper keyword and was added here to help the - // formatter. - 'PARTITION BY' => array(), - 'SUBPARTITION BY' => array(), - - // This is not a proper keyword and was added here to help the - // builder. - '_OPTIONS' => array( - 'class' => 'SqlParser\\Components\\OptionsArray', - 'field' => 'options', - ), - 'UNION' => array( - 'class' => 'SqlParser\\Components\\UnionKeyword', - 'field' => 'union', - ), - - // Actual clause parsers. - 'ALTER' => array( - 'class' => 'SqlParser\\Components\\Expression', - 'field' => 'table', - 'options' => array('skipColumn' => true), - ), - 'ANALYZE' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'BACKUP' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'CALL' => array( - 'class' => 'SqlParser\\Components\\FunctionCall', - 'field' => 'call', - ), - 'CHECK' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'CHECKSUM' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'DROP' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'fields', - 'options' => array('skipColumn' => true), - ), - 'FROM' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'from', - 'options' => array('skipColumn' => true), - ), - 'GROUP BY' => array( - 'class' => 'SqlParser\\Components\\OrderKeyword', - 'field' => 'group', - ), - 'HAVING' => array( - 'class' => 'SqlParser\\Components\\Condition', - 'field' => 'having', - ), - 'INTO' => array( - 'class' => 'SqlParser\\Components\\IntoKeyword', - 'field' => 'into', - ), - 'JOIN' => array( - 'class' => 'SqlParser\\Components\\JoinKeyword', - 'field' => 'join', - ), - 'LEFT JOIN' => array( - 'class' => 'SqlParser\\Components\\JoinKeyword', - 'field' => 'join', - ), - 'RIGHT JOIN' => array( - 'class' => 'SqlParser\\Components\\JoinKeyword', - 'field' => 'join', - ), - 'INNER JOIN' => array( - 'class' => 'SqlParser\\Components\\JoinKeyword', - 'field' => 'join', - ), - 'FULL JOIN' => array( - 'class' => 'SqlParser\\Components\\JoinKeyword', - 'field' => 'join', - ), - 'LIMIT' => array( - 'class' => 'SqlParser\\Components\\Limit', - 'field' => 'limit', - ), - 'OPTIMIZE' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'ORDER BY' => array( - 'class' => 'SqlParser\\Components\\OrderKeyword', - 'field' => 'order', - ), - 'PARTITION' => array( - 'class' => 'SqlParser\\Components\\ArrayObj', - 'field' => 'partition', - ), - 'PROCEDURE' => array( - 'class' => 'SqlParser\\Components\\FunctionCall', - 'field' => 'procedure', - ), - 'RENAME' => array( - 'class' => 'SqlParser\\Components\\RenameOperation', - 'field' => 'renames', - ), - 'REPAIR' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'RESTORE' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'SET' => array( - 'class' => 'SqlParser\\Components\\SetOperation', - 'field' => 'set', - ), - 'SELECT' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'expr', - ), - 'TRUNCATE' => array( - 'class' => 'SqlParser\\Components\\Expression', - 'field' => 'table', - 'options' => array('skipColumn' => true), - ), - 'UPDATE' => array( - 'class' => 'SqlParser\\Components\\ExpressionArray', - 'field' => 'tables', - 'options' => array('skipColumn' => true), - ), - 'VALUE' => array( - 'class' => 'SqlParser\\Components\\Array2d', - 'field' => 'values', - ), - 'VALUES' => array( - 'class' => 'SqlParser\\Components\\Array2d', - 'field' => 'values', - ), - 'WHERE' => array( - 'class' => 'SqlParser\\Components\\Condition', - 'field' => 'where', - ), - - ); + $lastStatement = null; /** - * The list of tokens that are parsed. + * Whether a union is parsed or not. * - * @var TokensList + * @var bool $inUnion */ - public $list; + $inUnion = false; /** - * Whether errors should throw exceptions or just be stored. + * The index of the last token from the last statement. * - * @var bool - * - * @see static::$errors + * @var int $prevLastIdx */ - public $strict = false; + $prevLastIdx = -1; /** - * List of errors that occurred during parsing. + * The list of tokens. * - * Usually, the parsing does not stop once an error occurred because that - * error might be a false positive or a partial result (even a bad one) - * might be needed. - * - * @var ParserException[] - * - * @see Parser::error() + * @var TokensList $list */ - public $errors = array(); - - /** - * List of statements parsed. - * - * @var Statement[] - */ - public $statements = array(); - - /** - * Constructor. - * - * @param string|UtfString|TokensList $list The list of tokens to be parsed. - * @param bool $strict Whether strict mode should be enabled or not. - */ - public function __construct($list = null, $strict = false) - { - if ((is_string($list)) || ($list instanceof UtfString)) { - $lexer = new Lexer($list, $strict); - $this->list = $lexer->list; - } elseif ($list instanceof TokensList) { - $this->list = $list; - } - - $this->strict = $strict; - - if ($list !== null) { - $this->parse(); - } - } - - /** - * Builds the parse trees. - * - * @return void - */ - public function parse() - { + $list = &$this->list; + for (; $list->idx < $list->count; ++$list->idx) { /** - * Last transaction. + * Token parsed at this moment. * - * @var TransactionStatement $lastTransaction + * @var Token $token */ - $lastTransaction = null; + $token = $list->tokens[$list->idx]; - /** - * Last parsed statement. - * - * @var Statement $lastStatement - */ - $lastStatement = null; - - /** - * Whether a union is parsed or not. - * - * @var bool $inUnion - */ - $inUnion = false; - - /** - * The index of the last token from the last statement. - * - * @var int $prevLastIdx - */ - $prevLastIdx = -1; - - /** - * The list of tokens. - * - * @var TokensList $list - */ - $list = &$this->list; - - for (; $list->idx < $list->count; ++$list->idx) { - - /** - * Token parsed at this moment. - * - * @var Token $token - */ - $token = $list->tokens[$list->idx]; - - // `DELIMITER` is not an actual statement and it requires - // special handling. - if (($token->type === Token::TYPE_NONE) - && (strtoupper($token->token) === 'DELIMITER') - ) { - // Skipping to the end of this statement. - $list->getNextOfType(Token::TYPE_DELIMITER); - $prevLastIdx = $list->idx; - continue; - } - - // Statements can start with keywords only. - // Comments, whitespaces, etc. are ignored. - if ($token->type !== Token::TYPE_KEYWORD) { - if (($token->type !== TOKEN::TYPE_COMMENT) - && ($token->type !== Token::TYPE_WHITESPACE) - && ($token->type !== Token::TYPE_OPERATOR) // `(` and `)` - && ($token->type !== Token::TYPE_DELIMITER) - ) { - $this->error( - __('Unexpected beginning of statement.'), - $token - ); - } - continue; - } - - if ($token->value === 'UNION') { - $inUnion = true; - continue; - } - - // Checking if it is a known statement that can be parsed. - if (empty(static::$STATEMENT_PARSERS[$token->value])) { - if (!isset(static::$STATEMENT_PARSERS[$token->value])) { - // A statement is considered recognized if the parser - // is aware that it is a statement, but it does not have - // a parser for it yet. - $this->error( - __('Unrecognized statement type.'), - $token - ); - } - // Skipping to the end of this statement. - $list->getNextOfType(Token::TYPE_DELIMITER); - $prevLastIdx = $list->idx; - continue; - } - - /** - * The name of the class that is used for parsing. - * - * @var string $class - */ - $class = static::$STATEMENT_PARSERS[$token->value]; - - /** - * Processed statement. - * - * @var Statement $statement - */ - $statement = new $class($this, $this->list); - - // The first token that is a part of this token is the next token - // unprocessed by the previous statement. - // There might be brackets around statements and this shouldn't - // affect the parser - $statement->first = $prevLastIdx + 1; - - // Storing the index of the last token parsed and updating the old - // index. - $statement->last = $list->idx; + // `DELIMITER` is not an actual statement and it requires + // special handling. + if (($token->type === Token::TYPE_NONE) + && (strtoupper($token->token) === 'DELIMITER') + ) { + // Skipping to the end of this statement. + $list->getNextOfType(Token::TYPE_DELIMITER); $prevLastIdx = $list->idx; + continue; + } - // Handles unions. - if (($inUnion) - && ($lastStatement instanceof SelectStatement) - && ($statement instanceof SelectStatement) + // Statements can start with keywords only. + // Comments, whitespaces, etc. are ignored. + if ($token->type !== Token::TYPE_KEYWORD) { + if (($token->type !== TOKEN::TYPE_COMMENT) + && ($token->type !== Token::TYPE_WHITESPACE) + && ($token->type !== Token::TYPE_OPERATOR) // `(` and `)` + && ($token->type !== Token::TYPE_DELIMITER) ) { - - /** - * This SELECT statement. - * - * @var SelectStatement $statement - */ - - /** - * Last SELECT statement. - * - * @var SelectStatement $lastStatement - */ - $lastStatement->union[] = $statement; - - // if there are no no delimiting brackets, the `ORDER` and - // `LIMIT` keywords actually belong to the first statement. - $lastStatement->order = $statement->order; - $lastStatement->limit = $statement->limit; - $statement->order = array(); - $statement->limit = null; - - // The statement actually ends where the last statement in - // union ends. - $lastStatement->last = $statement->last; - - $inUnion = false; - continue; + $this->error( + __('Unexpected beginning of statement.'), + $token + ); } + continue; + } - // Handles transactions. - if ($statement instanceof TransactionStatement) { + if ($token->value === 'UNION') { + $inUnion = true; + continue; + } - /** - * @var TransactionStatement $statement - */ - if ($statement->type === TransactionStatement::TYPE_BEGIN) { - $lastTransaction = $statement; - $this->statements[] = $statement; - } elseif ($statement->type === TransactionStatement::TYPE_END) { - if ($lastTransaction === null) { - // Even though an error occurred, the query is being - // saved. - $this->statements[] = $statement; - $this->error( - __('No transaction was previously started.'), - $token - ); - } else { - $lastTransaction->end = $statement; - } - $lastTransaction = null; - } - continue; + // Checking if it is a known statement that can be parsed. + if (empty(static::$STATEMENT_PARSERS[$token->value])) { + if (!isset(static::$STATEMENT_PARSERS[$token->value])) { + // A statement is considered recognized if the parser + // is aware that it is a statement, but it does not have + // a parser for it yet. + $this->error( + __('Unrecognized statement type.'), + $token + ); } + // Skipping to the end of this statement. + $list->getNextOfType(Token::TYPE_DELIMITER); + $prevLastIdx = $list->idx; + continue; + } - // Finally, storing the statement. - if ($lastTransaction !== null) { - $lastTransaction->statements[] = $statement; - } else { + /** + * The name of the class that is used for parsing. + * + * @var string $class + */ + $class = static::$STATEMENT_PARSERS[$token->value]; + + /** + * Processed statement. + * + * @var Statement $statement + */ + $statement = new $class($this, $this->list); + + // The first token that is a part of this token is the next token + // unprocessed by the previous statement. + // There might be brackets around statements and this shouldn't + // affect the parser + $statement->first = $prevLastIdx + 1; + + // Storing the index of the last token parsed and updating the old + // index. + $statement->last = $list->idx; + $prevLastIdx = $list->idx; + + // Handles unions. + if (($inUnion) + && ($lastStatement instanceof SelectStatement) + && ($statement instanceof SelectStatement) + ) { + /** + * This SELECT statement. + * + * @var SelectStatement $statement + */ + + /** + * Last SELECT statement. + * + * @var SelectStatement $lastStatement + */ + $lastStatement->union[] = $statement; + + // if there are no no delimiting brackets, the `ORDER` and + // `LIMIT` keywords actually belong to the first statement. + $lastStatement->order = $statement->order; + $lastStatement->limit = $statement->limit; + $statement->order = array(); + $statement->limit = null; + + // The statement actually ends where the last statement in + // union ends. + $lastStatement->last = $statement->last; + + $inUnion = false; + continue; + } + + // Handles transactions. + if ($statement instanceof TransactionStatement) { + /** + * @var TransactionStatement $statement + */ + if ($statement->type === TransactionStatement::TYPE_BEGIN) { + $lastTransaction = $statement; $this->statements[] = $statement; + } elseif ($statement->type === TransactionStatement::TYPE_END) { + if ($lastTransaction === null) { + // Even though an error occurred, the query is being + // saved. + $this->statements[] = $statement; + $this->error( + __('No transaction was previously started.'), + $token + ); + } else { + $lastTransaction->end = $statement; + } + $lastTransaction = null; } - $lastStatement = $statement; - + continue; } - } - /** - * Creates a new error log. - * - * @param string $msg The error message. - * @param Token $token The token that produced the error. - * @param int $code The code of the error. - * - * @throws ParserException Throws the exception, if strict mode is enabled. - * - * @return void - */ - public function error($msg = '', Token $token = null, $code = 0) - { - $error = new ParserException($msg, $token, $code); - if ($this->strict) { - throw $error; + // Finally, storing the statement. + if ($lastTransaction !== null) { + $lastTransaction->statements[] = $statement; + } else { + $this->statements[] = $statement; } - $this->errors[] = $error; + $lastStatement = $statement; + } } + + /** + * Creates a new error log. + * + * @param string $msg The error message. + * @param Token $token The token that produced the error. + * @param int $code The code of the error. + * + * @throws ParserException Throws the exception, if strict mode is enabled. + * + * @return void + */ + public function error($msg = '', Token $token = null, $code = 0) + { + $error = new ParserException($msg, $token, $code); + if ($this->strict) { + throw $error; + } + $this->errors[] = $error; + } } diff --git a/libraries/sql-parser/src/Statement.php b/libraries/sql-parser/src/Statement.php index 0568d93773..3fe3f42c1d 100644 --- a/libraries/sql-parser/src/Statement.php +++ b/libraries/sql-parser/src/Statement.php @@ -109,7 +109,6 @@ abstract class Statement $query = ''; foreach (static::$CLAUSES as $clause) { - /** * The name of the clause. * @@ -190,7 +189,6 @@ abstract class Statement $parsedOptions = empty(static::$OPTIONS); for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * @@ -247,7 +245,8 @@ abstract class Statement ) { if (!empty($parsedClauses[$token->value])) { $parser->error( - __('This type of clause was previously parsed.'), $token + __('This type of clause was previously parsed.'), + $token ); break; } diff --git a/libraries/sql-parser/src/Statements/AlterStatement.php b/libraries/sql-parser/src/Statements/AlterStatement.php index 31bbcb4540..4da360aafc 100644 --- a/libraries/sql-parser/src/Statements/AlterStatement.php +++ b/libraries/sql-parser/src/Statements/AlterStatement.php @@ -73,7 +73,9 @@ class AlterStatement extends Statement // Parsing affected table. $this->table = Expression::parse( - $parser, $list, array( + $parser, + $list, + array( 'noAlias' => true, 'noBrackets' => true, ) @@ -94,7 +96,6 @@ class AlterStatement extends Statement $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * @@ -115,7 +116,7 @@ class AlterStatement extends Statement if ($state === 0) { $this->altered[] = AlterOperation::parse($parser, $list); $state = 1; - } else if ($state === 1) { + } elseif ($state === 1) { if (($token->type === Token::TYPE_OPERATOR) && ($token->value === ',')) { $state = 0; } diff --git a/libraries/sql-parser/src/Statements/CreateStatement.php b/libraries/sql-parser/src/Statements/CreateStatement.php index 9b07737d7f..1a46b56f40 100644 --- a/libraries/sql-parser/src/Statements/CreateStatement.php +++ b/libraries/sql-parser/src/Statements/CreateStatement.php @@ -395,7 +395,6 @@ class CreateStatement extends Statement * Handles partitions. */ for (; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * @@ -428,7 +427,6 @@ class CreateStatement extends Statement --$list->idx; // `getNextOfType` also advances one position. $this->subpartitionsNum = $token->value; } elseif (!empty($field)) { - /* * Handling the content of `PARTITION BY` and `SUBPARTITION BY`. */ @@ -499,7 +497,7 @@ class CreateStatement extends Statement $token = $list->tokens[$list->idx]; $this->body[] = $token; } - } else if ($this->options->has('VIEW')) { + } elseif ($this->options->has('VIEW')) { $token = $list->getNext(); // Skipping whitespaces and comments. // Parsing columns list. @@ -518,7 +516,7 @@ class CreateStatement extends Statement } $this->body[] = $token; } - } else if ($this->options->has('TRIGGER')) { + } elseif ($this->options->has('TRIGGER')) { // Parsing the time and the event. $this->entityOptions = OptionsArray::parse( $parser, diff --git a/libraries/sql-parser/src/Token.php b/libraries/sql-parser/src/Token.php index d5343212cb..9659672cf1 100644 --- a/libraries/sql-parser/src/Token.php +++ b/libraries/sql-parser/src/Token.php @@ -219,59 +219,59 @@ class Token public function extract() { switch ($this->type) { - case Token::TYPE_KEYWORD: - if (!($this->flags & Token::FLAG_KEYWORD_RESERVED)) { - // Unreserved keywords should stay the way they are because they - // might represent field names. - return $this->token; - } - return strtoupper($this->token); - case Token::TYPE_WHITESPACE: - return ' '; - case Token::TYPE_BOOL: - return strtoupper($this->token) === 'TRUE'; - case Token::TYPE_NUMBER: - $ret = str_replace('--', '', $this->token); // e.g. ---42 === -42 - if ($this->flags & Token::FLAG_NUMBER_HEX) { - if ($this->flags & Token::FLAG_NUMBER_NEGATIVE) { - $ret = str_replace('-', '', $this->token); - sscanf($ret, "%x", $ret); - $ret = -$ret; - } else { - sscanf($ret, "%x", $ret); + case Token::TYPE_KEYWORD: + if (!($this->flags & Token::FLAG_KEYWORD_RESERVED)) { + // Unreserved keywords should stay the way they are because they + // might represent field names. + return $this->token; } - } elseif (($this->flags & Token::FLAG_NUMBER_APPROXIMATE) + return strtoupper($this->token); + case Token::TYPE_WHITESPACE: + return ' '; + case Token::TYPE_BOOL: + return strtoupper($this->token) === 'TRUE'; + case Token::TYPE_NUMBER: + $ret = str_replace('--', '', $this->token); // e.g. ---42 === -42 + if ($this->flags & Token::FLAG_NUMBER_HEX) { + if ($this->flags & Token::FLAG_NUMBER_NEGATIVE) { + $ret = str_replace('-', '', $this->token); + sscanf($ret, "%x", $ret); + $ret = -$ret; + } else { + sscanf($ret, "%x", $ret); + } + } elseif (($this->flags & Token::FLAG_NUMBER_APPROXIMATE) || ($this->flags & Token::FLAG_NUMBER_FLOAT) - ) { - sscanf($ret, "%f", $ret); - } else { - sscanf($ret, "%d", $ret); - } - return $ret; - case Token::TYPE_STRING: - $quote = $this->token[0]; - $str = str_replace($quote . $quote, $quote, $this->token); - return mb_substr($str, 1, -1, 'UTF-8'); // trims quotes - case Token::TYPE_SYMBOL: - $str = $this->token; - if ((isset($str[0])) && ($str[0] === '@')) { - // `mb_strlen($str)` must be used instead of `null` because - // in PHP 5.3- the `null` parameter isn't handled correctly. - $str = mb_substr( - $str, - ((!empty($str[1])) && ($str[1] === '@')) ? 2 : 1, - mb_strlen($str), - 'UTF-8' - ); - } - if ((isset($str[0])) && (($str[0] === '`') + ) { + sscanf($ret, "%f", $ret); + } else { + sscanf($ret, "%d", $ret); + } + return $ret; + case Token::TYPE_STRING: + $quote = $this->token[0]; + $str = str_replace($quote . $quote, $quote, $this->token); + return mb_substr($str, 1, -1, 'UTF-8'); // trims quotes + case Token::TYPE_SYMBOL: + $str = $this->token; + if ((isset($str[0])) && ($str[0] === '@')) { + // `mb_strlen($str)` must be used instead of `null` because + // in PHP 5.3- the `null` parameter isn't handled correctly. + $str = mb_substr( + $str, + ((!empty($str[1])) && ($str[1] === '@')) ? 2 : 1, + mb_strlen($str), + 'UTF-8' + ); + } + if ((isset($str[0])) && (($str[0] === '`') || ($str[0] === '"') || ($str[0] === '\'')) - ) { - $quote = $str[0]; - $str = str_replace($quote . $quote, $quote, $str); - $str = mb_substr($str, 1, -1, 'UTF-8'); - } - return $str; + ) { + $quote = $str[0]; + $str = str_replace($quote . $quote, $quote, $str); + $str = mb_substr($str, 1, -1, 'UTF-8'); + } + return $str; } return $this->token; } diff --git a/libraries/sql-parser/src/Utils/BufferedQuery.php b/libraries/sql-parser/src/Utils/BufferedQuery.php index e58165ab27..1da0b81dfe 100644 --- a/libraries/sql-parser/src/Utils/BufferedQuery.php +++ b/libraries/sql-parser/src/Utils/BufferedQuery.php @@ -186,7 +186,6 @@ class BufferedQuery $loopLen = $end ? $len : $len - 16; for (; $i < $loopLen; ++$i) { - /* * Handling special parses statuses. */ @@ -285,7 +284,6 @@ class BufferedQuery && (($this->query[$i + 8] === 'R') || ($this->query[$i + 8] === 'r')) && (Context::isWhitespace($this->query[$i + 9])) ) { - // Saving the current index to be able to revert any parsing // done in this block. $iBak = $i; @@ -307,14 +305,12 @@ class BufferedQuery && ((($i < $len) && (Context::isWhitespace($this->query[$i]))) || (($i === $len) && ($end))) ) { - // Saving the delimiter. $this->setDelimiter($delimiter); // Whether this statement should be returned or not. $ret = ''; if (!empty($this->options['parse_delimiter'])) { - // Appending the `DELIMITER` statement that was just // found to the current statement. $ret = trim( @@ -351,7 +347,6 @@ class BufferedQuery && (($this->delimiterLen === 1) || (substr($this->query, $i, $this->delimiterLen) === $this->delimiter)) ) { - // Saving the statement that just ended. $ret = $this->current; diff --git a/libraries/sql-parser/src/Utils/Error.php b/libraries/sql-parser/src/Utils/Error.php index df6d5133ce..a9c0814fcf 100644 --- a/libraries/sql-parser/src/Utils/Error.php +++ b/libraries/sql-parser/src/Utils/Error.php @@ -78,14 +78,20 @@ class Error * @return array */ public static function format( - $errors, $format = '#%1$d: %2$s (near "%4$s" at position %5$d)' + $errors, + $format = '#%1$d: %2$s (near "%4$s" at position %5$d)' ) { $ret = array(); $i = 0; foreach ($errors as $key => $err) { $ret[$key] = sprintf( - $format, ++$i, $err[0], $err[1], $err[2], $err[3] + $format, + ++$i, + $err[0], + $err[1], + $err[2], + $err[3] ); } diff --git a/libraries/sql-parser/src/Utils/Formatter.php b/libraries/sql-parser/src/Utils/Formatter.php index ebdea42ece..ea4b419ff4 100644 --- a/libraries/sql-parser/src/Utils/Formatter.php +++ b/libraries/sql-parser/src/Utils/Formatter.php @@ -257,7 +257,6 @@ class Formatter // `$prev` and `$curr` which store two consecutive tokens. // Actually, at every iteration the previous token is being used. for ($list->idx = 0; $list->idx < $list->count; ++$list->idx) { - /** * Token parsed at this moment. * @@ -266,11 +265,9 @@ class Formatter $curr = $list->tokens[$list->idx]; if ($curr->type === Token::TYPE_WHITESPACE) { - // Whitespaces are skipped because the formatter adds its own. continue; } elseif ($curr->type === Token::TYPE_COMMENT) { - // Whether the comments should be parsed. if (!empty($this->options['remove_comments'])) { continue; @@ -297,7 +294,6 @@ class Formatter // Checking if pointers were initialized. if ($prev !== null) { - // Checking if a new clause started. if (static::isClause($prev) !== false) { $lastClause = $prev->value; @@ -428,7 +424,6 @@ class Formatter if (($token->type === $format['type']) && (($token->flags & $format['flags']) === $format['flags']) ) { - // Running transformation function. if (!empty($format['function'])) { $func = $format['function']; diff --git a/libraries/sql-parser/src/Utils/Tokens.php b/libraries/sql-parser/src/Utils/Tokens.php new file mode 100644 index 0000000000..eb76df2a73 --- /dev/null +++ b/libraries/sql-parser/src/Utils/Tokens.php @@ -0,0 +1,175 @@ + + * @license http://opensource.org/licenses/GPL-2.0 GNU Public License + */ +class Tokens +{ + + /** + * Checks if a pattern is a match for the specified token. + * + * @param Token $token The token to be matched. + * @param array $pattern The pattern to be matches. + * + * @return bool + */ + public static function match(Token $token, array $pattern) + { + // Token. + if ((isset($pattern['token'])) + && ($pattern['token'] !== $token->token) + ) { + return false; + } + + // Value. + if ((isset($pattern['value'])) + && ($pattern['value'] !== $token->value) + ) { + return false; + } + + if ((isset($pattern['value_str'])) + && (strcasecmp($pattern['value_str'], $token->value)) + ) { + return false; + } + + // Type. + if ((isset($pattern['type'])) + && ($pattern['type'] !== $token->type) + ) { + return false; + } + + // Flags. + if ((isset($pattern['flags'])) + && (($pattern['flags'] & $token->flags) === 0) + ) { + return false; + } + + return true; + } + + public static function replaceTokens($list, array $find, array $replace) + { + + /** + * Whether the first parameter is a list. + * + * @var bool + */ + $isList = $list instanceof TokensList; + + // Parsing the tokens. + if (!$isList) { + $list = Lexer::getTokens($list); + } + + /** + * The list to be returned. + * + * @var array + */ + $newList = array(); + + /** + * The length of the find pattern is calculated only once. + * + * @var int + */ + $findCount = count($find); + + /** + * The starting index of the pattern. + * + * @var int + */ + $i = 0; + + while ($i < $list->count) { + // A sequence may not start with a comment. + if ($list->tokens[$i]->type === Token::TYPE_COMMENT) { + $newList[] = $list->tokens[$i]; + ++$i; + continue; + } + + /** + * The index used to parse `$list->tokens`. + * + * This index might be running faster than `$k` because some tokens + * are skipped. + * + * @var int + */ + $j = $i; + + /** + * The index used to parse `$find`. + * + * This index might be running slower than `$j` because some tokens + * are skipped. + * + * @var int + */ + $k = 0; + + // Checking if the next tokens match the pattern described. + while (($j < $list->count) && ($k < $findCount)) { + // Comments are being skipped. + if ($list->tokens[$j]->type === Token::TYPE_COMMENT) { + ++$j; + } + + if (!static::match($list->tokens[$j], $find[$k])) { + // This token does not match the pattern. + break; + } + + // Going to next token and segment of find pattern. + ++$j; + ++$k; + } + + + // Checking if the sequence was found. + if ($k === $findCount) { + // Inserting new tokens. + foreach ($replace as $token) { + $newList[] = $token; + } + + // Skipping next `$findCount` tokens. + $i = $j; + } else { + // Adding the same token. + $newList[] = $list->tokens[$i]; + ++$i; + } + } + + return $isList ? + new TokensList($newList) : TokensList::build($newList); + } +} diff --git a/libraries/sql-parser/src/common.php b/libraries/sql-parser/src/common.php new file mode 100644 index 0000000000..3575c24a7f --- /dev/null +++ b/libraries/sql-parser/src/common.php @@ -0,0 +1,21 @@ + 1 ) { // Has partitions @@ -51,14 +56,20 @@ if (!isset($partitionDetails)) { $partition['name'] = 'p' . $i; $partition['prefix'] = 'partitions[' . $i . ']'; - // Values are specified only for LIST and RANGE type partitions - $partition['value_enabled'] = isset($_REQUEST['partition_by']) - && ($_REQUEST['partition_by'] == 'RANGE' - || $_REQUEST['partition_by'] == 'LIST'); - if (! $partition['value_enabled']) { + if (! isset($partition['value_type'])) { // Changing from HASH/KEY to RANGE/LIST $partition['value_type'] = ''; $partition['value'] = ''; } + if (! isset($partition['engine'])) { // When removing subpartitioning + $partition['engine'] = ''; + $partition['comment'] = ''; + $partition['data_directory'] = ''; + $partition['index_directory'] = ''; + $partition['max_rows'] = ''; + $partition['min_rows'] = ''; + $partition['tablespace'] = ''; + $partition['node_group'] = ''; + } if (PMA_isValid($_REQUEST['subpartition_count'], 'numeric') && $_REQUEST['subpartition_count'] > 1 diff --git a/po/af.po b/po/af.po index 2ed2b515fd..9fb37b924a 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-28 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Stoor as leer (file)" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Herstel" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Kies Alles" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Daar ontbreek 'n waarde in die vorm !" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "ten minste een van die woorde" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indeks" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Index" msgid "Edit index" msgstr "Indeks" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Bediener weergawe" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Bediener weergawe" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Velde omring met" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy msgid "Please select column(s) for the index." msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "in navraag" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Sa" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-stelling" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Waarde" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Die gasheer naam is leeg!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Die gebruiker naam ontbreek!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Die wagwoord is leeg!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "Tabel %s is verwyder" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Die profiel is opgedateer." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Die ry is verwyder" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1210,171 +1216,171 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy #| msgid "Space usage" msgid "Query cache efficiency" msgstr "Spasie verbruik" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy #| msgid "Space usage" msgid "Query cache usage" msgstr "Spasie verbruik" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy #| msgid "Space usage" msgid "Query cache used" msgstr "Spasie verbruik" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Gebruik" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy msgid "Total memory" msgstr "totaal" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy msgid "Total swap" msgstr "totaal" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Spasie verbruik" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tabel(le)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Operasies" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1386,47 +1392,47 @@ msgstr "" msgid "None" msgstr "Geen" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1434,150 +1440,150 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Stoor as leer (file)" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Beskikbaar" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onbeskikbaar" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy msgid "Chart title" msgstr "Geen tabelle" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "Local" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "Geen databasisse" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Geen databasisse" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Verduidelik SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1585,7 +1591,7 @@ msgstr "Verduidelik SQL" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1595,94 +1601,94 @@ msgstr "Status" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy msgid "Total time:" msgstr "totaal" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL resultaat" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy msgid "Chart" msgstr "Geen tabelle" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy msgid "Log table filter options" msgstr "Databasis statistieke" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Hoeveelheid rye per bladsy" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy msgid "Total:" msgstr "totaal" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "Local" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy msgid "Reload page" msgstr "Hernoem tabel na" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1693,65 +1699,65 @@ msgstr "" msgid "Import" msgstr "Export" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Verander Navraag" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentasie" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentasie" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1762,69 +1768,69 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "Local" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "SQL result" msgid "Processing request" msgstr "SQL resultaat" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query" msgid "Request failed!!" msgstr "Navraag dmv Voorbeeld" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Inside table(s):" msgid "Dropping column" msgstr "Binne tabel(le):" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy msgid "Adding primary key" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1834,65 +1840,65 @@ msgstr "Voeg 'n nuwe veld by" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy msgid "Renaming databases" msgstr "Hernoem tabel na" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy msgid "Copying database" msgstr "Geen databasisse" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Soek" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "SQL-stelling" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "SQL-stelling" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Beloer Data" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Verwyder" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1909,45 +1915,45 @@ msgstr "" msgid "Export" msgstr "Export" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Hoeveelheid rye per bladsy" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Voeg 'n nuwe gebruiker by" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "SQL-stelling" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "SQL-stelling" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1961,7 +1967,7 @@ msgstr "SQL-stelling" msgid "Edit" msgstr "Verander" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1973,94 +1979,94 @@ msgstr "Verander" msgid "Delete" msgstr "Verwyder" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Disable" msgid "Variable %d:" msgstr "Onbeskikbaar" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Column selector" msgstr "Kolom name" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Soek in databasis" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Kenmerke" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "'n primere sleutel is bygevoeg op %s." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Naspeur verslag" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2068,279 +2074,280 @@ msgstr "" msgid "End of step" msgstr "By Einde van Tabel" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Skep 'n nuwe tabel op databasis %s" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Stoor" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "SQL-stelling" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Soek" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolom name" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolom name" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-stelling" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy msgid "Data point content" msgstr "Tabel kommentaar" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lyne beeindig deur" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Binne kring %d:" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Buite kring:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bladsy nommer:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Kies Alles" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Kies Alles" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2348,265 +2355,265 @@ msgstr "Kies Alles" msgid "Open page" msgstr "Gebruik" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Kies Alles" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Kies asb. 'n bladsy om te verander" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Display PDF schema" msgid "Export relational schema" msgstr "Vertoon PDF skema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Waarde vir die kolom \"%s\"" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Stuur" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolom name" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Wys alles" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Lyne beeindig deur" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Export" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Kies Tabelle" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Geen databasisse" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolom name" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Wys alles" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indekse" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Wys ruitgebied" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indekse" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indekse" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy msgid "tables" msgstr "Tabel" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy msgid "views" msgstr "Velde" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Reset" msgid "events" msgstr "Herstel" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "Funksie" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2614,136 +2621,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Geen databasisse" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "Bediener Keuse" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "Bediener Keuse" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "Wys tabelle" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoreer" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Wys hierdie navraag weer hier" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Wil jy regtig " -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabel kommentaar" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "SQL-stelling" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2751,95 +2758,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mei" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2847,78 +2854,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Des" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2926,199 +2933,199 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Geen" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekords" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Kies asb. 'n databasis" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Kies asb. 'n bladsy om te verander" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4088,7 +4095,7 @@ msgstr "Indekse" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Aksie" @@ -4099,8 +4106,8 @@ msgid "Keyname" msgstr "Sleutelnaam" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4132,9 +4139,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 #, fuzzy msgid "Comment" msgstr "Kommentaar" @@ -4150,14 +4157,14 @@ msgstr "Indeks %s is verwyder." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Verwyder" @@ -4267,7 +4274,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4921,19 +4928,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Skep 'n nuwe indeks" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -4941,7 +4954,7 @@ msgctxt "string types" msgid "String" msgstr "Lyne beeindig deur" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy msgctxt "spatial types" msgid "Spatial" @@ -5103,7 +5116,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rye" @@ -5188,7 +5201,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Naam" @@ -8163,7 +8176,8 @@ msgid "No data to display" msgstr "Geen databasisse" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8203,37 +8217,38 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Databasis %s is verwyder." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %s has been moved to %s." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabel %s is geskuif na %s." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Navraag dmv Voorbeeld" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %s has been moved to %s." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabel %s is geskuif na %s." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Verander" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8244,20 +8259,20 @@ msgstr "Verander" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Volteks" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -9698,7 +9713,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10160,33 +10175,33 @@ msgid "Delete the table (DROP)" msgstr "Geen databasisse" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 #, fuzzy msgid "Repair" msgstr "Herstel tabel" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10206,6 +10221,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10424,7 +10440,7 @@ msgstr "Databasis statistieke" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Stort data vir tabel" @@ -10449,14 +10465,14 @@ msgstr "geen Beskrywing" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tabel struktuur vir tabel" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10464,7 +10480,7 @@ msgstr "Slegs struktuur" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10574,7 +10590,7 @@ msgid "Database:" msgstr "Databasis" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10684,7 +10700,7 @@ msgid "Data creation options" msgstr "Databasis statistieke" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10754,7 +10770,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10825,24 +10841,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Slegs struktuur" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -14878,7 +14894,7 @@ msgid "Pick from Central Columns" msgstr "Hernoem tabel na" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -14893,84 +14909,84 @@ msgstr "" msgid "after %s" msgstr "Na %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy msgid "Partition by:" msgstr "Operasies" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of rows per page" msgid "Expression or column list" msgstr "Hoeveelheid rye per bladsy" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy msgid "Partitions:" msgstr "Operasies" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy msgid "Subpartition by:" msgstr "Operasies" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy msgid "Subpartitions:" msgstr "Operasies" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy msgid "Partition" msgstr "Operasies" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Waarde" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy msgid "Subpartition" msgstr "Operasies" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data only" msgid "Data directory" msgstr "Slegs Data" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "Indeks tipe :" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Start" msgid "Max rows" msgstr "Sa" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Beloer Data" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Soek" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -15813,31 +15829,49 @@ msgid "at beginning of table" msgstr "By Begin van Tabel" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy msgid "Partitions" msgstr "Operasies" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Geen indeks gedefinieer!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Ry lengte" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Ry lengte" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +msgid "Partition table" +msgstr "Operasies" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Print view" +msgid "Edit partitioning" +msgstr "Drukker mooi (print view)" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/ar.po b/po/ar.po index 4d95ab60a1..b93aa56f01 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-03-27 10:17+0200\n" "Last-Translator: Ahmed Saleh Abd El-Raouf Ismae \n" "Language-Team: Arabic " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "حفظ كملف" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "إعادة تعيين" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "تحديد الكل" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "يوجد قيمة مفقودة بالنموذج !" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "على الأقل أحد الكلمات" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "إضافة فهرس" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "حرّر الفهرس" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "أضف %d عمود/عواميد إلى الفهرس" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "إنشاء إجراء" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "إنشاء إجراء" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "حقل محاط بـ" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %d column(s) to index" msgid "Please select column(s) for the index." msgstr "أضف %d عمود/عواميد إلى الفهرس" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "عليك اختيار عمود واحد على الأقل للعرض" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "في الإستعلام" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "الصفوف المتأثرة:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "استعلام SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "القيمة" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "إسم المستضيف فارغ!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "إسم المستخدم فارغ!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "كلمة المرور فارغة !" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "حذف المستخدمين المحددين" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "أغلاق" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s جدول (جداول)" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "لقد تم تجديد الملف الشخصي." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "لقد تمّ حذف الصّف" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "آخر" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "اتصالات / عمليات" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "فشل قراءة ملف الإعدادات" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1180,167 +1186,167 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "فعالية خابية المسائلة" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "إستعمال خابية المسائلة" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "خابية المسائلة المستعملة" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "إستخدام النظام للمعالج (CPU)" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "ذاكرة النظام" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "المقايدة النظامية" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "متوسط التحميل" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "إجمالي الذاكرة" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "الذاكرة المؤقتة" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "الذاكرة الوسيطة" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "الذاكرة الحرة" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "الذاكرة المستخدمة" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "مجموع المقايدة" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "المقايدة في الخابية" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "المقايدة المستخدمة" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "المقايدة الحرّة" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "بايتات أُرسلت" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "بايتات أُستلمت" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "اتصالات" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "عمليات" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "كيلوبايت" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "ميجابايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "جيجابايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "تيرابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "بيتابايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "إكسابايت" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d جدول/جداول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "العمليات" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "بيانات سير" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "الإعدادات" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "أضف تخطيط إلى المشبكة" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1352,47 +1358,47 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" msgid "None" msgstr "لا شيء" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "إستئناف المراقبة" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "إيقاف المراقبة" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "بدء التحديث التلقائي" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "وقف التحديث التلقائي" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "(general_log و slow_query_log) مفعلة." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log مفعل." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log مفعل." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "(general_log و slow_query_log) معطلة." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1400,43 +1406,43 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time محددة بـ %d ثانية." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "الإعدادات التالية سوف تفعل عند إعادة تشغيل السيرفر:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "تعيين log_output بـ %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "تفعيل %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "تعطيل %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "تعيين long_query_time بـ %ds" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1444,98 +1450,98 @@ msgstr "" "لاتستطيع تغير هذه المتغيرات , فضلاً سجل دخولك كمدير أو أتصل بمدير قاعدة " "البيانات." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "تغيير الإعدادات" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "الإعدادات الحالية" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "استورد الملفات" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "الفارق" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "مقسوم على %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "سعرة" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "من السجل البطيء" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "من السجل العام" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "تحليل السجلات" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "تحميل وتحليل السجل . قد يستغرق بعض الوقت." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "ألغ الطلب" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "تم تحميل بيانات سجلّ الوقائع. الإستعلامات المنفذة في الفترة الزمنية هذه:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "قفز لجدول التسجيل" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "لايوجد بيانات" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "تمّ تحليل سجل الوقائع، و لكن لم توجد أي بيانات في إمتداد الزمن هذا." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "جاري التحليل…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "إشرح الخرج" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1543,7 +1549,7 @@ msgstr "إشرح الخرج" msgid "Status" msgstr "الحالة" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1553,82 +1559,82 @@ msgstr "الحالة" msgid "Time" msgstr "وقت" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "مجموع الوقت:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "الجدول" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "الرسم البياني" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "خيارات مرشح جدول السجل" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "مرشح" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "ترشيح الإستعلامات بواسطة word/regexp :" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "مجموعة إستعلامات , تجاهل المتغيرات في جملة WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "مجموع الصفوف المدخلة:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "المجموع:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "تحميل السجلات" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "فشل تحديث المراقب" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "إعادة تحميل الصفحة" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "الصفوف المتأثرة:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1638,63 +1644,63 @@ msgstr "" msgid "Import" msgstr "استيراد" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "تشكيل مراقب الواردات" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "الرجاء تحديد الملف الذي تريد استيراده" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "تحليل الإستعلام" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "نظام المرشد" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "الأداء المتوقع" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "قضايا" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "توصية" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "تفاصيل القواعد" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "المصادقة" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "المتغيرات المستعملة" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "إختبار" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1705,73 +1711,73 @@ msgstr "" msgid "Cancel" msgstr "ألغاء" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "تغيير الإعدادات" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy #| msgid "Loading" msgid "Loading…" msgstr "تحميل" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "معالجة الطلب" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query type" msgid "Request failed!!" msgstr "نوع الاستعلام" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "لا قواعد بيانات محددة." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "إزالة العمود" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1781,65 +1787,65 @@ msgstr "إضافة مفتاح رئيسي" msgid "OK" msgstr "موافق" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "إضغط لإغلاق هذا الإشعار" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "أعادة تسمية قاعدة البيانات" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "نسخ قاعدة البيانات" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "تغيير مجموعة المحارف" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "تعطيل التحقق من المفتاح الغريب" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "فشل إحضار الترويسة" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "بحث" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "إخفاء نتائج البحث" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "إظهار نتائج البحث" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "استعراض" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "حذف" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة RETURN !" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1856,45 +1862,45 @@ msgstr "تعريف الدالة المخزنة يجب أن تحتوي جملة R msgid "Export" msgstr "تصدير" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "القيم للعمود %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "القيم لعمود جديد" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "أدخل كل قيمة بحقل منفصل" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "إضافة قيمة/قيم %d" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "ملاحظة: إذا كان الملف يحتوي على جداول متعددة , سيتم تجميعها فى جدول واحد." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "إخفاء صندوق الإستعلام" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "إظهار صندوق الإستعلام" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1908,7 +1914,7 @@ msgstr "إظهار صندوق الإستعلام" msgid "Edit" msgstr "تعديل" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1920,96 +1926,96 @@ msgstr "تعديل" msgid "Delete" msgstr "حذف" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d ليس رقم عمود صالح." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "متغير" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "اختيار" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "بحث في قاعدة البيانات" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "الذاكرة الحرة" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "هل أنت متأكد؟" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "مشاركه" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "إضافة مفتاح رئيسي" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "تم إضافة المفتاح الأساسي في %s" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "تقرير التتبع" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2017,352 +2023,353 @@ msgstr "" msgid "End of step" msgstr "في نهاية الجدول" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "إنتهى" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "تأكيد تبعيات جزئية" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "خطوة" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "لا قواعد بيانات محددة." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "حفظ" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "بحث في الجدول" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "اسم العمود" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "اسم العمود" -#: js/messages.php:402 +#: js/messages.php:403 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "جداول أكبر" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "جداول أكبر" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "إخفاء معايير البحث" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "كل نقطة تمثل صف بيانات." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "لإستعمال المقربة، إختر جزء من رسم البيانات بواسطة الفأرة." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "أنقر زر الإسعادة للمقربة للرجوع إلى الحالة الأصلية." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "أنقر على نقطة من البيانات لمشاهدة و ربما تحرير سطر البيانات." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "يمكن تغيير قياس الرسم البياني من خلال سحبه على طول القرنة في أسفل اليمين." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "إختر عمودين" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "إختر عمودين مختلفين" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "محتوى نقطة البيانات" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "نسخ" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "نقطة" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "منحنى" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "مضلع" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "هندسة" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "الحلقة الداخلية" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "الحلقة الخارجية :" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "مفتاح التشفير" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "إختيار المفتاح المرجع" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "إختيار المفتاح الغريب" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "فضلاً أختر المفتاح الرئيسي أو المفتاح الفريد" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحة رقم:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "اختر الجداول" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "اختر الجداول" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "صفحات حرة" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "اختر الجداول" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "سعرة" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "رجاء اختر صفحة لتعديلها" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "بناء الارتباطات" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "تمت التعديلات" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "إضافة خيار للعمود " -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "إرسال" -#: js/messages.php:482 +#: js/messages.php:483 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "إضغط escape لإلغاء التعديل" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2370,217 +2377,217 @@ msgstr "" "لقد تم التعديل على بعض البيانات ولم يتم حفظها. هل تريد ترك هذه الصفحة بدون " "حفظ البيانات الجديدة؟" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "إسحب لإعادة الترتيب" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "إضغط لوضع علامة / إزالة علامة" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "أنقر مرتين لنسخ اسم العمود" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "عرض الكل" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "منحنى" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ألغاء" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "ألغي" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "نجاح" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "إفتراضيات الإستيراد" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "إسقاط الملفات هنا" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "اختر الجداول" -#: js/messages.php:510 +#: js/messages.php:511 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by double-clicking directly on them." msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى." -#: js/messages.php:513 +#: js/messages.php:514 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." msgid "You can also edit most values
by clicking directly on them." msgstr "تستطيع تعديل أغلب الأعمدة
بالضغط مباشرة على المحتوى." -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ذهاب للرابط" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "أنسخ اسم العمود" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "توليد" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "أكثر" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "عرض الكل" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "إخفاء الفهارس" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "عرض الشعار في الإطار الأيسر" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "جداول" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "عرض" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Processes" msgid "procedures" msgstr "عمليات" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "حدث" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Function" msgid "functions" msgstr "دالة" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2590,482 +2597,482 @@ msgstr "" "هو %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", آخر إصدار مستقر:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "محدثة" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "إنشاء عرض" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير الإعدادات" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Import files" msgid "Show report details" msgstr "استورد الملفات" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "تجاهل" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "أعرض هذا الاستعلام هنا مرة أخرى" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Issued queries" msgid "%s queries executed %s times in %s seconds." msgstr "إستعلامات صادرة" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تعليقات الجدول" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "إخفاء نتائج البحث" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "سابق" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "اليوم" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "يناير" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "فبراير" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "مارس" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "أبريل" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "مايو" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "يونيو" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "يوليو" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "أغسطس" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "سبتمبر" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "أكتوبر" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "نوفمبر" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "الأحد" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "الإثنين" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "الجمعة" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "الأسبوع" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "التقويم-الشهر-السنة" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "لا شيء" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "الساعة" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "الثانية" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "استخدم حقل نص" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4050,7 +4057,7 @@ msgstr "فهارس" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "العملية" @@ -4061,8 +4068,8 @@ msgid "Keyname" msgstr "اسم المفتاح" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4094,9 +4101,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "تعليق" @@ -4111,14 +4118,14 @@ msgstr "تم حذف الفهرس %s." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "سقّط" @@ -4228,7 +4235,7 @@ msgstr "تتبع" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4907,23 +4914,29 @@ msgstr "مجموعة من المضلعات" msgid "A collection of geometry objects of any type" msgstr "مجموعة كائنات الهندسة من أي نوع" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "رقمية" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "التاريخ والوقت" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "السلسلة" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -5085,7 +5098,7 @@ msgstr "إستعمل هذه القيمة" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "صفوف" @@ -5170,7 +5183,7 @@ msgstr "لا" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "الاسم" @@ -8303,7 +8316,8 @@ msgid "No data to display" msgstr "لايوجد بيانات" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8351,37 +8365,38 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "لايوجد صفوف مختارة" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "تم حذف المستخدمين المحددين بنجاح." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "خطأ في الإستعلام" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %s has been moved to %s." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "%s جدول تم نقله إلى %s." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "خطأ في الإستعلام" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "تغيير" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8392,20 +8407,20 @@ msgstr "تغيير" msgid "Index" msgstr "فهرست" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "النص كاملا" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -9861,7 +9876,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10327,32 +10342,32 @@ msgid "Delete the table (DROP)" msgstr "حذف الجدول (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "حلل" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "تحقق" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "تحسين" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "إعادة بناء" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "إصلاح" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10372,6 +10387,7 @@ msgid "Partition %s" msgstr "تقسيم %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "إزالة التقسيم" @@ -10598,7 +10614,7 @@ msgstr "خيارات تصدير قاعدة بيانات" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "إرجاع أو استيراد بيانات الجدول" @@ -10624,21 +10640,21 @@ msgstr "الوصف" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "بنية الجدول" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10754,7 +10770,7 @@ msgid "Database:" msgstr "قاعدة البيانات" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10870,7 +10886,7 @@ msgid "Data creation options" msgstr "خيارات التحويل" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10940,7 +10956,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11016,24 +11032,24 @@ msgstr "لاتستعمل AUTO_INCREMENT للقيم الصفرية" msgid "AUTO_INCREMENT for table" msgstr "أضف قيمة AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15297,7 +15313,7 @@ msgid "Pick from Central Columns" msgstr "حذف الرسم البياني" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15314,92 +15330,92 @@ msgstr "" msgid "after %s" msgstr "بعد %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "مقسم" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "القيم للعمود %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "تقسيم %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "مقسم" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "مقسم" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "تقسيم %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "القيمة" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "مقسم" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "محركات" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "قاموس البيانات" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "نوع الفهرس :" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "الصفوف المتأثرة:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "استعراض" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "بحث في الجدول" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -16272,7 +16288,7 @@ msgid "at beginning of table" msgstr "في بداية الجدول" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16280,28 +16296,47 @@ msgstr "تقسيم %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "لم يتم تعريف الفهرس!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "مقسم" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "مقسم" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "طول الصف" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "طول الصف" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "مقسم" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "إزالة التقسيم" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/az.po b/po/az.po index 9a90b30838..6396164cb8 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-05-21 01:04+0200\n" "Last-Translator: Sevdimali İsa \n" "Language-Team: Azerbaijani " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Yaddaşa ver və Bağla" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Sıfırla" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Hamısını Sıfırla" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Formda tam doldurulmayıb!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Seçimlərdən ən az birin seçin!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "İndeks əlavə et" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "İndeksi redaktə et" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "İndeksə %s sütun əlavə et" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Tək-sütun indeksi yarat" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Kompleks indeks yarat" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Saheler ehate edildiyi işare" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "İndeksə əlavə olunması üçün sütunları seçin." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Ən az bir sütun əlavə etməlisiniz." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQL önizləmə" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Sorğunu simulyasiya et" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Uyğun gələn sətirlər:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL sorğusu:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Qiyməti" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Host adı boşdur!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "İstifadəçi adı boş qaldı!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Parol boşdur!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Seçilən İstifadəçilər Silinir" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Bağla" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Yaradılmış səhifələrin sayı." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil yenilendi." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Sətir silindi." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Digər" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Əlaqələr / Proseslər" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Lokal izləmə konfiqurasiyası uyğun deyil!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1161,165 +1167,165 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Sorğu keş effektivliyi" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Sorğu keş istifadəsi" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "İstifadə edilən sorğu keşi" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistem prosessoru istifadəsi" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Sistem Yaddaşı" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Sistem mübadiləsi" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Ortalama yükləmə" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Toplam Yaddaş" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Keş edilmiş yaddaş" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Boş yaddaş" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "İstifadə olunan yaddaş" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Toplam mübadilə" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Keş edilmiş mübadilə" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "İstifadə olunan mübadilə" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Sərbəst mübadilə" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Göndərilmiş bayt" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Alınan bayt" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Əlaqələr" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Prosesler" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "QB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d cədvəl" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Suallar" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Tənzimləmələr" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Zəhmət olmasa massivə ən azı bir dəyişən əlavə edin!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1331,47 +1337,47 @@ msgstr "Zəhmət olmasa massivə ən azı bir dəyişən əlavə edin!" msgid "None" msgstr "Heç biri" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "İzləməyə davam et" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "İzləməni dayandır" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log və slow_query_log aktivləşdirilib." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log aktivləşdirildi." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log aktivləşdirildi." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output TABLE olaraq ayarlı deyil." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output TABLE olaraq ayarlı." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1379,12 +1385,12 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time %d saniyəyə qurulub." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1393,30 +1399,30 @@ msgstr "" "ilkin vəziyyətinə sıfırlanacaq:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "log_output-u %s-ə ayarla" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "%s aktiv" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Söndürmək %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time-ı %d saniyəyə ayarlayın." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1424,95 +1430,95 @@ msgstr "" "Bu dəyişənləri dəyişdirə bilməzsiniz. Zəhmət olmasa root olaraq daxil olun " "vəya Baza adminstartoru ilə əlaqə saxlayın." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Dəyişdirmə tənzimləmələri" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Cari Seçimlər" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Diaqram başlığı" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Ayırıcı" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "%s tərəfindən bölən" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Vahid" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Loglar analiz edilir" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "İstəyi ləğv et" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Log cədvəlinə keç" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Heç bir məlumat tapılmadı" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analiz edilir…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Eksportu açıqla" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1520,7 +1526,7 @@ msgstr "Eksportu açıqla" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1530,82 +1536,82 @@ msgstr "Status" msgid "Time" msgstr "Müddət" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Toplam vaxt:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Nəticələrin profili çıxardılır" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Cədvəl" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Diaqram" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Log Cədvəl Filtr seçənəkləri" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtr" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Söz/düzənli ifadəyə görə sorğuları filtrlə:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Qruplanmış sətirlərin cəmi:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Cəm:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Loglar yüklənir" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Səhifəi yenidən yüklə" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Təsirlənən sətirlər:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1615,61 +1621,61 @@ msgstr "" msgid "Import" msgstr "İmport" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Zəhmət olmasa import etmək istədiyiniz faylı seçin." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "İmport üçün serverdə fayllar yoxdur!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Sorğunu Analiz et" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Müşavir sistemi" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Ola biləcək performans problemləri" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problem" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Tövsiyə" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Qayda təfsilatları" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Əsaslandırma" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "İstifadə olunan dəyişən / formula(düstur)" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Sınaq" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1680,73 +1686,73 @@ msgstr "" msgid "Cancel" msgstr "Ləğv et" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Dəyişdirmə tənzimləmələri" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Təsdiqlə" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Yüklənir…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "İstək ləğv edildi!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "istək emal olunur" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "İstək ləğv edildi!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesler" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Xəta Kodu: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Xəta mətni: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Series column:" msgid "Dropping column" msgstr "Ardıcıllıq sütunu:" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Birinci dərəcəli açar əlavə et" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1756,61 +1762,61 @@ msgstr "Birinci dərəcəli açar əlavə et" msgid "OK" msgstr "Tamam" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Bu bildirişi rədd etmək üçün klikləyin" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Verilənlər Bazası yenidən adlandırılır" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Verilənlər Bazası kopyalanır" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Kodlaşdırma dəyişdirilir" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Gerçək sətir sayını almaq mümkün olmadı." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Axtarır" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Axtarış nəticələrini gizlət" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Axtarış nəticələrini göstər" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Gözdən keçirilir" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Silinir" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1827,44 +1833,44 @@ msgstr "" msgid "Export" msgstr "Eksport" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktoru" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "%s sütunu üçün qiymətlər" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Yeni sütun üçün qiymətlər" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Hər bir qiyməti ayrı sahəyə daxil edin." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d qiymət əlavə et" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Qeyd: Əgər faylda çoxlu cədvəl vardırsa, bunlar birinin içərisində " "birləşdiriləcək." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Sorğu qutusunu gizlət" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Sorğu qutusunu göstər" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1878,7 +1884,7 @@ msgstr "Sorğu qutusunu göstər" msgid "Edit" msgstr "Redaktə et" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1890,41 +1896,41 @@ msgstr "Redaktə et" msgid "Delete" msgstr "Sil" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d keçərli sətir sayı deyil." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Dəyişən %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Seç" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Sütun seçici" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Bu siyahıda axtar" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1933,15 +1939,15 @@ msgstr "" "Mərkəzi siyahıda sütun yoxdur. %s Verilənlər Bazası üçün Mərkəzi sütunlar " "siyahısının, cari cədvəldə olmayan sütunlara sahib olduğundan əmin olun." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Daha çoxuna bax" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Əminsiniz?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1949,342 +1955,343 @@ msgstr "" "Bu addım bəzi sütunların tərifini dəyişdirə bilər.
Davam etmək " "istəyirsinizmi?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Davam" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Birinci dərəcəli açar əlavə et" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Birinci Dərəcəli Açar əlavə edildi." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Sizi növbəti addıma aparır…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Normallaşdırmanın ilk addımı '%s' cədvəli üçün tamamlandı." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Addım sonu" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Normallaşdırmanın ikinci addımı(2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Hazırdır" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Göstərilən cədvəli yarat" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Heç bir baza seçilmemişdir." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Yaddaşa ver" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Axtarış kriteriyalarını gizlət" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Axtarış kriteriyalarını göstər" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Aralıq Axtarma" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Maksimum Sütun:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Minimum Sütun:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Minimum dəyər:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Maksimum dəyər:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını gizlət" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Axtar və Dəyişdir kriteriyalarını göstər" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Hər nöqtə bir verilən sətrini təmsil edir." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Nöqtənin üzərində durmaq etiketini göstərəcəkdir." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Orjinal vəziyyətə qayıtmaq üçün yaxınlaşdırmağı sıfırla düyməsinə klikləyin." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "İki sütun seçin" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "İki fərqli sütun seçin" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Verilən nöqtə məzmunu" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Diqqətə Alma" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Xətt" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Poliqon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Daxili halqa %d:" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Xarici halqa:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Şifrələmə açarını kopyalamaq istəyirsinizmi?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Şifrələmə açarı" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Zəhmət olmasa birinci dərəcəli və ya unikal açar seçin!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Göstərmək üçün sütun seçin" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Səhifə adı" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Səhifəni yaddaşa ver" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Səhifəni yaddaşa ver" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Səhifəni aç" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Səhifəni sil" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıqsız" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Zəhmət olmasa davam etmək üçün bir səhifə seçin" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Bu səhifədə dəyişiklikləri yaddaşa vermək istəyirsiniz?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Səhifə uğurla silindi" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Əlaqəli sxemləri eksport et" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Modifikasiyalar yaddaşa verildi" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu üçün seçim əlavə edin." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d obyekt yaradıldı." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Submit" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Redaktəni ləğv etmək üçün Esc düyməsinə basın." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2292,179 +2299,179 @@ msgstr "" "Bəzi verilənləri redaktə etdiniz və yaddaşa vermədiniz. Verilənləri yadda " "saxlamadan çıxmaq istəyirsinizmi?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Yenidən düzənləmək üçün sürükləyin." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Nəticələri bu sütuna görə sıralamaq üçün klikləyin." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamaq üçün iki dəfə klikləyin." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Hamısını göstər" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Zəhmət olamasa keçərli onaltılıq sətir daxil edin. Keçərli simvollar 0-9, A-" "F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Orjinal sətir" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "ləğv et" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Dayandırılmış Əlaqələr" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "İmport statusu" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Əvvəlcə Verilənlər Bazasını seçin" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Bağlantıya get:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Sütun adını buferə kopyalamaq üçün sağ klikləyin." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Parol yarat" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Yarat" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Daha çox" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Paneli Göstər" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Paneli Gizlət" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Gizli naviqasiya ağac bəndlərini göstər." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Əsas panel ilə əlaqələndir" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Əsas panel ilə əlaqəni kəs" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "Bazadakı bütün %s filtrləmək üçün axtarış mətnindən sonra Enterə basın" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "cədvəllər" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "görünüşlər" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "proseduralar" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "hadisələr" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funksiyalar" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "İstənilən səhifə tarixdə tapılmadı, ola bilsin vaxtı keçib." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2474,57 +2481,57 @@ msgstr "" "versiya %s, %s tarixində yayımlanıb." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", son stabil versiya:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "aktual" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Görünüş yarat" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Xəta hesabatları göndər" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Xəta Hesabatı Göndər" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Önəmli JavaScript xətası yarandı. Xəta hesabatı yollamaq istəyirsiniz?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Hesabat tənzimləmələrini dəyişdir" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Hesabat Təfsilatlarını Göstər" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Eksport PHP səviyyəsindəki aşağı icra(execution) vaxtına görə tamamlanmadı!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2534,427 +2541,427 @@ msgstr "" "edilmədə, bəzi sahələr, PHP-nin max_input_vars konfiqurasiyasından dolayı " "göz ardı edilə bilər." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Serverdə bəzi xətalar aşkar edildi!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Zəhmət olmasa bu pəncərənin altına baxın." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Heç birin diqqətə alma" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Hər tənzimləmələriniz kimi bunlar da hal-hazırda göndərilir, zəhmət olmasa " "səbirli olun." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Bu sorğu təkrar icra olunsunmu?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Bu əlfəcini silmək istədiyinizə əminsinizmi?" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Cədvəl haqqında izahat" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Axtarış nəticələrini gizlət" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Əvvəlki" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Bugün" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Yanvar" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Fevral" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Mart" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Aprel" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "May" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "İyun" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "İyul" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Avqust" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Sentyabr" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Oktyabr" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Noyabr" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Dekabr" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dek" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Bazar" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Bazar Ertəsi" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Çərşənbə axşamı" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Çərşənbə" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Cümə axşamı" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Cümə" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Şənbə" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "B" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Çərş Axş" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Ç" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "CA" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Ş" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "təqvim-ay-il" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "Heç biri" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Saat" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Dəqiqə" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Saniyə" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Mətn sahəsi istifadə et" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:785 +#: js/messages.php:786 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Lütfən düzgün captcha daxil edin!" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Lütfən düzgün captcha daxil edin!" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Zəhmət olmasa keçərli uzunluq daxil edin!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Zəhmət olmasa keçərli bir nömrə daxil edin!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3842,7 +3849,7 @@ msgstr "Indeksler" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Fəaliyyətlər" @@ -3853,8 +3860,8 @@ msgid "Keyname" msgstr "Açar söz" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3886,9 +3893,9 @@ msgstr "Qarşılaşdırma" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Şərh" @@ -3903,14 +3910,14 @@ msgstr "%s indeksi ləğv edildi." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Ləğv et" @@ -4020,7 +4027,7 @@ msgstr "İzləmə" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4674,23 +4681,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Ədədi" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Tarix və saat" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Sətir" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Fəza" @@ -4844,7 +4857,7 @@ msgstr "Bu qiymətdən istifadə et" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Sıra sayı" @@ -4925,7 +4938,7 @@ msgstr "XEYR" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Adı" @@ -7839,7 +7852,8 @@ msgid "No data to display" msgstr "Göstərmək üçün məlumat yoxdur" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7878,33 +7892,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "Sütün adı '%s' MySQL'ə ayrılmış açar kəlimədir." msgstr[1] "Sütün adı '%s' MySQL'ə ayrılmış açar kəlimədir." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Sütun seçilməmişdir." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Sütunlar uğurlu şəkildə daşındı." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Sorğu xətası" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "%1$s cədvəli uğurlu bir şəkildə dəyişdirildi." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Sorğu xətası" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Dəyişdir" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7915,20 +7930,20 @@ msgstr "Dəyişdir" msgid "Index" msgstr "İndeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Tam metn (Fulltext)" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Fərdi qiymətlər" @@ -9305,7 +9320,7 @@ msgstr "Yeni" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9753,32 +9768,32 @@ msgid "Delete the table (DROP)" msgstr "Cədvəli sil(DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analiz et" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Yoxlama" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimallaşdır" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Yenidən Qur" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Təmir et" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9798,6 +9813,7 @@ msgid "Partition %s" msgstr "Bölmə %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10017,7 +10033,7 @@ msgstr "Data Dump seçimləri" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Sxemi çıxarılan cedvel" @@ -10041,21 +10057,21 @@ msgstr "Tərif" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Cədvəl üçün cədvəl strukturu" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Görünüş strukturu" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10145,7 +10161,7 @@ msgid "Database:" msgstr "Verilənlər Bazası:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Verilən:" @@ -10243,7 +10259,7 @@ msgid "Data creation options" msgstr "Verilən yaratma seçimləri" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10313,7 +10329,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10384,24 +10400,24 @@ msgstr "AUTO_INCREMENT deyeri elave et" msgid "AUTO_INCREMENT for table" msgstr "Cədvəl üçün AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "Cədvəl Əlaqələri" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Görünüş strukturu %s cədvəl olaraq eksport edildi" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Verilənlərin oxunması xətası:" @@ -14441,7 +14457,7 @@ msgid "Pick from Central Columns" msgstr "Cedveli yeniden adlandır" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -14457,92 +14473,92 @@ msgstr "İlk" msgid "after %s" msgstr "%s sonrasına" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "bölündü" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "%s sütunu üçün qiymətlər" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Bölmə %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "bölündü" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "bölündü" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Bölmə %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Dəyər" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "bölündü" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Motorlar" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "Verilənlər lüğəti" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "İndex tipi :" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Uyğun gələn sətirlər:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "İçindekiler" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Cədvəl axtarışı" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -15318,7 +15334,7 @@ msgid "at beginning of table" msgstr "Cədvəlin başına" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15326,28 +15342,47 @@ msgstr "Bölmə %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "İndeks təyin edilməyib!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "bölündü" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "bölündü" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Sıra uzunluğu" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Sıra uzunluğu" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "bölündü" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "partitioned" +msgid "Edit partitioning" +msgstr "bölündü" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Redaktə görünuşü" diff --git a/po/be.po b/po/be.po index 18117bca92..d3efdc03b1 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-05-15 14:28+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Захаваць як файл" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Скінуць" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Выбраць усё" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Не зададзенае значэньне ў форме!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "прынамсі адно з словаў" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Дадаць новае поле" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Рэдагаваць наступны радок" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Дадаць %s новыя палі" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Стварыць сувязь" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Стварыць сувязь" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Палі ўзятыя ў" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Дадаць %s новыя палі" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Трэба дадаць прынамсі адно поле." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "па запыту" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Фіксаваныя старонкі" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-запыт" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Значэньне" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Пустое імя хосту!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Пустое імя карыстальніка!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Пусты пароль!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:125 +#: js/messages.php:126 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Выдаліць выбраных карыстальнікаў" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Колькасьць створаных старонак." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профіль быў адноўлены." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Радок быў выдалены" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Падлучэньні" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1267,181 +1273,181 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Кэш запытаў" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Кэш запытаў" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Кэш запытаў" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Выкарыстаньне" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Колькасьць файлаў логу" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Пул буфэру" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Агулам" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Выкарыстаньне прасторы" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Вольных старонак" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Атрымана" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Падлучэньні" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Працэсы" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "КiБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "МіБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "ГіБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "ТіБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "ПіБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "ЭіБ" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табліц(ы)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Пэрсыдзкая" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Трафік" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:186 +#: js/messages.php:187 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Зьвяць зь сеткай" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1453,47 +1459,47 @@ msgstr "" msgid "None" msgstr "Няма" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1501,156 +1507,156 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Захаваць як файл" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Уключана" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Адключана" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Запыт выконваўся %01.4f сэк" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Загаловак справаздачы" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "Лякальны" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Запыты чытаньня" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Прааналізаваць" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Тлумачыць SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1658,7 +1664,7 @@ msgstr "Тлумачыць SQL" msgid "Status" msgstr "Стан" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1668,98 +1674,98 @@ msgstr "Стан" msgid "Time" msgstr "Час" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Агулам" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Прафіляваньне" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табліца" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кадыроўка" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy msgid "Log table filter options" msgstr "Налады экспарту базы дадзеных" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 #, fuzzy msgid "Filter" msgstr "Файлы" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy msgid "Sum of grouped rows:" msgstr "Колькасьць адсартаваных радкоў." -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Агулам" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "Лякальны" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Абнавіць" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1769,70 +1775,70 @@ msgstr "" msgid "Import" msgstr "Імрарт" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Абнавіць запыт" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Дакумэнтацыя" -#: js/messages.php:283 +#: js/messages.php:284 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Падрабязьней…" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy msgid "Justification" msgstr "Аўтэнтыфікацыя…" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1843,72 +1849,72 @@ msgstr "" msgid "Cancel" msgstr "Скасаваць" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "Лякальны" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Працэсы" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Кэш запытаў" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Працэсы" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Ня выбраная база дадзеных." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Працэдуры" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Дадаць %s новыя палі" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1918,72 +1924,72 @@ msgstr "Дадаць %s новыя палі" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Перайменаваць базу дадзеных у" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кадыроўка" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Адключыць праверку зьнешніх ключоў" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy msgid "Failed to get real row count." msgstr "Памылка запісу на дыск." -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пошук" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "SQL-запыт" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "SQL-запыт" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Прагляд" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Выдаленьне %s" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -2000,45 +2006,45 @@ msgstr "" msgid "Export" msgstr "Экспарт" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Колькасьць палёў" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "SQL-запыт" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "SQL-запыт" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -2052,7 +2058,7 @@ msgstr "SQL-запыт" msgid "Edit" msgstr "Рэдагаваць" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2064,94 +2070,94 @@ msgstr "Рэдагаваць" msgid "Delete" msgstr "Выдаліць" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Зьменная" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Пошук у базе дадзеных" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрыбуты" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Першасны ключ быў дададзены да %s." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Зьмяніць" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2159,562 +2165,563 @@ msgstr "" msgid "End of step" msgstr "У канцы табліцы" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy msgid "Done" msgstr "Дадзеныя" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ня выбраная база дадзеных." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Захаваць" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "SQL-запыт" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пошук" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Назвы калёнак" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Назвы калёнак" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy msgid "Maximum value:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL-запыт" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Памер указальніка на дадзеныя" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Скапіяваць" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Радкі падзеленыя" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Дадаць новага карыстальніка" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Радкі падзеленыя" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Старонка:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Выбраць усё" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Выбраць усё" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Вольных старонак" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Выбраць усё" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Рэляцыйная схема" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Колькасьць палёў" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Зьменена радкоў: %1$d." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Адправіць" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Назвы калёнак" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Паказаць усе" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Першапачатковая пазыцыя" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Скасаваць" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Спынена" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Імпартаваць файлы" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Парог файла логу" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Выберыце табліцу(ы)" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Назвы калёнак" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Паказаць усе" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Дадаць новае поле" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Паказаць сетку" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy msgid "Link with main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy msgid "Unlink from main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Табліц" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Выгляд" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Працэдуры" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "Падзея" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Функцыі" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2722,138 +2729,138 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "ID сэрвэра" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "ID сэрвэра" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Паказаць адкрытыя табліцы" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ігнараваць" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Паказаць гэты запыт зноў" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-запыт" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Камэнтар да табліцы" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "SQL-запыт" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Папярэдняя старонка" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2861,96 +2868,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Тра" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2958,78 +2965,78 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Сьн" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3037,86 +3044,86 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3125,137 +3132,137 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Няма" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у сэкунду" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Выкарыстоўваць тэкставае поле" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4258,7 +4265,7 @@ msgstr "Індэксы" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Дзеяньне" @@ -4269,8 +4276,8 @@ msgid "Keyname" msgstr "Імя ключа" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4302,9 +4309,9 @@ msgstr "Супастаўленьне" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Камэнтар" @@ -4319,14 +4326,14 @@ msgstr "Індэкс %s быў выдалены." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Выдаліць" @@ -4438,7 +4445,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -5108,19 +5115,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Стварыць новы індэкс" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5128,7 +5141,7 @@ msgctxt "string types" msgid "String" msgstr "Радкі падзеленыя" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Log file count" msgctxt "spatial types" @@ -5295,7 +5308,7 @@ msgstr "Выкарыстоўваць гэта значэньне" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Радкі" @@ -5383,7 +5396,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Назва" @@ -8465,7 +8478,8 @@ msgid "No data to display" msgstr "Базы дадзеных адсутнічаюць" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8509,39 +8523,40 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Ніводны радок ня выбраны" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Табліца %1$s была пасьпяхова зьмененая." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Тып запыту" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Табліца %1$s была пасьпяхова зьмененая." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Зьмяніць" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8552,20 +8567,20 @@ msgstr "Зьмяніць" msgid "Index" msgstr "Індэкс" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Поўнатэкстэкставае" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10111,7 +10126,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10585,32 +10600,32 @@ msgid "Delete the table (DROP)" msgstr "Базы дадзеных адсутнічаюць" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Прааналізаваць" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Праверыць" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Аптымізаваць" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Перабудаваць" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Адрамантаваць" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10629,6 +10644,7 @@ msgid "Partition %s" msgstr "Падзел %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Скасаваць падзел на часткі" @@ -10863,7 +10879,7 @@ msgstr "Налады экспарту базы дадзеных" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Дамп дадзеных табліцы" @@ -10889,21 +10905,21 @@ msgstr "Апісаньне" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Структура табліцы" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Структура для прагляду" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Замяняльная структура для прагляду" @@ -11021,7 +11037,7 @@ msgid "Database:" msgstr "База дадзеных" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11137,7 +11153,7 @@ msgid "Data creation options" msgstr "Опцыі пераўтварэньня" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11207,7 +11223,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11282,25 +11298,25 @@ msgstr "Дадаць значэньне AUTO_INCREMENT" msgid "AUTO_INCREMENT for table" msgstr "Дадаць значэньне AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME-тыпы табліцы" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "Сувязі ў табліцы" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Структура для прагляду" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15750,7 +15766,7 @@ msgid "Pick from Central Columns" msgstr "Перайменаваць базу дадзеных у" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15767,91 +15783,91 @@ msgstr "" msgid "after %s" msgstr "Пасьля %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "падзеленая на сэкцыі" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of fields" msgid "Expression or column list" msgstr "Колькасьць палёў" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Падзел %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "падзеленая на сэкцыі" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "падзеленая на сэкцыі" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Падзел %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Значэньне" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "падзеленая на сэкцыі" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Машыны" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Хатняя тэчка дадзеных" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy msgid "Index directory" msgstr "Хатняя тэчка дадзеных" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Latched pages" msgid "Max rows" msgstr "Фіксаваныя старонкі" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Прагляд" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Пошук" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16735,7 +16751,7 @@ msgid "at beginning of table" msgstr "У пачатку табліцы" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16743,28 +16759,47 @@ msgstr "Падзел %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Індэкс ня вызначаны!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "падзеленая на сэкцыі" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "падзеленая на сэкцыі" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Даўжыня радка" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Даўжыня радка" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "падзеленая на сэкцыі" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Скасаваць падзел на часткі" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/be@latin.po b/po/be@latin.po index 22666b2e4d..696f22c000 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-28 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Zachavać jak fajł" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Skinuć" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Vybrać usio" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Nie zadadzienaje značeńnie ŭ formie!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "prynamsi adno z słovaŭ" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Dadać novaje pole" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Redagavać nastupny radok" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Dadać %s novyja pali" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Stvaryć suviaź" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Stvaryć suviaź" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Pali ŭziatyja ŭ" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Dadać %s novyja pali" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "pa zapytu" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Fiksavanyja staronki" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-zapyt" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Značeńnie" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Pustoje imia chostu!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Pustoje imia karystalnika!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Pusty parol!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:125 +#: js/messages.php:126 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Vydalić vybranych karystalnikaŭ" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Kolkaść stvoranych staronak." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil byŭ adnoŭleny." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Radok byŭ vydaleny" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Padłučeńni" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1282,182 +1288,182 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Keš zapytaŭ" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Keš zapytaŭ" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Keš zapytaŭ" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Vykarystańnie" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Kolkaść fajłaŭ łogu" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Puł buferu" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Ahułam" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Vykarystańnie prastory" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Volnych staronak" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Atrymana" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Padłučeńni" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Pracesy" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tablic(y)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "Suviazi" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:186 +#: js/messages.php:187 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Źviać ź sietkaj" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1469,47 +1475,47 @@ msgstr "" msgid "None" msgstr "Nijakaja" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1517,158 +1523,158 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Zachavać jak fajł" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Uklučana" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Adklučana" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Zahałovak spravazdačy" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy #| msgid "Reload privileges" msgid "Analysing logs" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Zapyty čytańnia" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy #| msgid "No databases" msgid "Jump to Log table" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Praanalizavać" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Tłumačyć SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1676,7 +1682,7 @@ msgstr "Tłumačyć SQL" msgid "Status" msgstr "Stan" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1686,100 +1692,100 @@ msgstr "Stan" msgid "Time" msgstr "Čas" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ahułam" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Prafilavańnie" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tablica" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Kadyroŭka" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Opcyi tablicy" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "Kolkaść paloŭ" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ahułam" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy #| msgid "Reload privileges" msgid "Loading logs" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Abnavić" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1789,71 +1795,71 @@ msgstr "" msgid "Import" msgstr "Imrart" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Abnavić zapyt" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dakumentacyja" -#: js/messages.php:283 +#: js/messages.php:284 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Padrabiaźniej…" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "Aŭtentyfikacyja…" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1864,73 +1870,73 @@ msgstr "" msgid "Cancel" msgstr "Skasavać" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy #| msgid "Reload privileges" msgid "Loading…" msgstr "Pierazahruzić pryvilei" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Pracesy" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Keš zapytaŭ" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Pracesy" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Pracedury" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Dadać %s novyja pali" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1940,74 +1946,74 @@ msgstr "Dadać %s novyja pali" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Pierajmienavać bazu dadzienych u" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Kadyroŭka" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy msgid "Failed to get real row count." msgstr "Pamyłka zapisu na dysk." -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pošuk" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "pa zapytu" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Prahlad" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Vydaleńnie %s" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -2024,48 +2030,48 @@ msgstr "" msgid "Export" msgstr "Ekspart" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Kolkaść paloŭ" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Dadać novaha karystalnika" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "pa zapytu" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -2079,7 +2085,7 @@ msgstr "U vyhladzie SQL-zapytu" msgid "Edit" msgstr "Redagavać" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2091,94 +2097,94 @@ msgstr "Redagavać" msgid "Delete" msgstr "Vydalić" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Źmiennaja" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pošuk u bazie dadzienych" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atrybuty" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Pieršasny kluč byŭ dadadzieny da %s." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Źmianić" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2186,570 +2192,571 @@ msgstr "" msgid "End of step" msgstr "U kancy tablicy" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nia vybranaja baza dadzienych." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Zachavać" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "pa zapytu" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pošuk" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazvy kalonak" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazvy kalonak" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "pa zapytu" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dadać/vydalić kalonku kryteru" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Pamier ukazalnika na dadzienyja" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Skapijavać" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Radki padzielenyja" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Lines terminated by" msgid "Inner ring" msgstr "Radki padzielenyja" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Radki padzielenyja" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Staronka:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Vybrać usio" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Vybrać usio" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Volnych staronak" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Vybrać usio" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Kali łaska, vybierycie staronku dla redagavańnia" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relacyjnaja schiema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Number of fields" msgid "Add an option for column \"%s\"." msgstr "Kolkaść paloŭ" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "Źmieniena radkoŭ: %1$d." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Adpravić" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Pakazać usie" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pieršapačatkovaja pazycyja" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Skasavać" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Spyniena" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Impartavać fajły" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Paroh fajła łogu" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Vybierycie tablicu(y)" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Niama tablic" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Pakazać usie" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dadać novaje pole" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Pakazać sietku" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tablic" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Vyhlad" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Pracedury" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "Padzieja" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Funkcyi" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2757,139 +2764,139 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Pakazać adkrytyja tablicy" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignaravać" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Pakazać hety zapyt znoŭ" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Vykanać zapyt z zakładak" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Kamentar da tablicy" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "pa zapytu" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Papiaredniaja staronka" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2897,96 +2904,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Tra" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2994,78 +3001,78 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Śn" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3073,86 +3080,86 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3161,137 +3168,137 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nijakaja" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundu" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4300,7 +4307,7 @@ msgstr "Indeksy" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Dziejańnie" @@ -4311,8 +4318,8 @@ msgid "Keyname" msgstr "Imia kluča" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4344,9 +4351,9 @@ msgstr "Supastaŭleńnie" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Kamentar" @@ -4361,14 +4368,14 @@ msgstr "Indeks %s byŭ vydaleny." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Vydalić" @@ -4480,7 +4487,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -5157,19 +5164,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Stvaryć novy indeks" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5177,7 +5190,7 @@ msgctxt "string types" msgid "String" msgstr "Radki padzielenyja" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Log file count" msgctxt "spatial types" @@ -5344,7 +5357,7 @@ msgstr "Vykarystoŭvać heta značeńnie" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Radki" @@ -5433,7 +5446,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nazva" @@ -8510,7 +8523,8 @@ msgid "No data to display" msgstr "Bazy dadzienych adsutničajuć" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8555,39 +8569,40 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Nivodny radok nia vybrany" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tablica %1$s była paśpiachova źmienienaja." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Typ zapytu" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tablica %1$s była paśpiachova źmienienaja." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Źmianić" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8598,20 +8613,20 @@ msgstr "Źmianić" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Poŭnatekstekstavaje" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10166,7 +10181,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10642,32 +10657,32 @@ msgid "Delete the table (DROP)" msgstr "Kapijavać bazu dadzienych u" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Praanalizavać" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Pravieryć" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Aptymizavać" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Pierabudavać" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Adramantavać" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10685,6 +10700,7 @@ msgid "Partition %s" msgstr "Padzieł %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Skasavać padzieł na častki" @@ -10921,7 +10937,7 @@ msgstr "Nałady ekspartu bazy dadzienych" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Damp dadzienych tablicy" @@ -10947,21 +10963,21 @@ msgstr "Apisańnie" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Struktura tablicy" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struktura dla prahladu" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Zamianialnaja struktura dla prahladu" @@ -11079,7 +11095,7 @@ msgid "Database:" msgstr "Baza dadzienych" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11197,7 +11213,7 @@ msgid "Data creation options" msgstr "Opcyi pieraŭtvareńnia" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11267,7 +11283,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11348,25 +11364,25 @@ msgstr "Dadać značeńnie AUTO_INCREMENT" msgid "AUTO_INCREMENT for table" msgstr "Dadać značeńnie AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME-typy tablicy" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "Suviazi ŭ tablicy" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura dla prahladu" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15811,7 +15827,7 @@ msgid "Pick from Central Columns" msgstr "Pierajmienavać bazu dadzienych u" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15828,92 +15844,92 @@ msgstr "" msgid "after %s" msgstr "Paśla %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "padzielenaja na sekcyi" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of fields" msgid "Expression or column list" msgstr "Kolkaść paloŭ" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Padzieł %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "padzielenaja na sekcyi" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "padzielenaja na sekcyi" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Padzieł %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Značeńnie" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "padzielenaja na sekcyi" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Mašyny" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Chatniaja tečka dadzienych" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Data home directory" msgid "Index directory" msgstr "Chatniaja tečka dadzienych" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Latched pages" msgid "Max rows" msgstr "Fiksavanyja staronki" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Prahlad" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Pošuk" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16799,7 +16815,7 @@ msgid "at beginning of table" msgstr "U pačatku tablicy" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16807,28 +16823,47 @@ msgstr "Padzieł %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Indeks nia vyznačany!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "padzielenaja na sekcyi" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "padzielenaja na sekcyi" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Daŭžynia radka" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Daŭžynia radka" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "padzielenaja na sekcyi" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Skasavać padzieł na častki" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/bg.po b/po/bg.po index 74f45b06bf..86e08e0fe1 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-06-28 13:36+0200\n" "Last-Translator: Valter Georgiev \n" "Language-Team: Bulgarian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Запис & затварянре" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Изчистване" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Нулиране на всички" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Липсва стойност в поле от формуляра!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Изберете поне една от опциите!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Моля, въведете валиден номер на порт!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Моля, въведете валидна дължина!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Добавяне на индекс" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Редактиране индекс" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Добавяне на %s колона(и) към индекса" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Създаване на индекс на една колона" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Създаване на композитен индекс" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Комбинация от:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Моля, изберете колони за индекса." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Трябва да добавите поне една колона." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Преглед на SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Симулиране на заявка" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Съвпадащи редове:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL заявка:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Стойности на Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Името на хоста е празно!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Потребителското име е празно!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Паролата е празна!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Изтриване на маркираните потребители" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Затваряне" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Page has been created." msgid "Template was created." msgstr "Страница беше създадена." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профилът беше обновен." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Редът беше изтрит" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Друго" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Връзки / Процеси" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Локалната настройка на наблюдателя е несъвместима!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1166,165 +1172,165 @@ msgstr "" "да не работят вече. Моля нулирайте настройките до тези по подразбиране в " "меню Настройки." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Ефикасност на буфера за заявки" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Използване на буфера за заявки" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Използвано от буфера за заявки" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Натоварване на процесора" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Системна памет" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Системен swap" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Средно натоварване" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Общо памет" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Памет в буфери" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Буферирана памет" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Свободна памет" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Използвана памет" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Всичкия swap" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Кеширан swap" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Използван swap" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Свободен swap" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Байта изпратени" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Байта получени" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Връзки" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Процеси" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Б" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "ЕБ" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d таблица(и)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Запитвания" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Настройки" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Добавяне диаграма към мрежата" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Моля добавете поне една променлива към сериите!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1336,47 +1342,47 @@ msgstr "Моля добавете поне една променлива към msgid "None" msgstr "Няма" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Подновяване на наблюдателя" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Bременно спиране на наблюдателя" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Стартиране на самоопресняване" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Спиране на самоопресняване" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log и slow_query_log са разрешени." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log е разрешен." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log е разрешен." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log и general_log са забранени." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "на log_output не е зададено TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "на log_output е зададено TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1387,12 +1393,12 @@ msgstr "" "отнемащи повече от %d секунди. Препоръчително е да зададете на " "long_query_time 0-2 секунди, в зависимост от вашата система." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time е зададено на %d секунда(и)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1401,30 +1407,30 @@ msgstr "" "подразбиране след рестарт на сървъра:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Задаване на log_output на %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Включване %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Изключване %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Задаване на long_query_time на %d секунди." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1432,57 +1438,57 @@ msgstr "" "Не може да променяте тези променливи. Моля, влезте като root или се обърнете " "към администратор." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Промяна настройки" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Текущи настройки" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Заглавие на диаграмата" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Диференциални" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Разделени с %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Единица" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "От дневника за бавни заявки" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "От общия дневник" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "Базата данни е непозната за тази заявка в логовете на сървъра." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Зареждане дневници" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Анализиране и зареждане на дневници. Ще отнеме малко време." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Отмяна на заявката" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1492,7 +1498,7 @@ msgstr "" "SQL заявка е използвана като критерий за групиране и другите атрибути на " "заявката, като начало на изпълнението, може да са различни." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1501,32 +1507,32 @@ msgstr "" "Тъй като е избрано групиране на заявки за вмъкване, такива към същата " "таблица също ще са групирани заедно, без оглед на вмъкваните данни." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Данните заредени. Заявки изпълнени в този времеви интервал:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Към таблицата-дневник" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Няма данни" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Дневникът е проверен, но няма заявки изпълнени в този времеви интервал." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Анализиране…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Обяснение на изхода" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1534,7 +1540,7 @@ msgstr "Обяснение на изхода" msgid "Status" msgstr "Състояние" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1544,60 +1550,60 @@ msgstr "Състояние" msgid "Time" msgstr "Време" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Общо време:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Резултат от профилиране" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Таблица" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Диаграма" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Опции за филтриране на таблица-дневник" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Филтър" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Филтриране заявки по дума/регулярен израз:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Групиране на заявките и игнориране на променливата информация в WHERE " "клаузите" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Брой групирани редове:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Общо:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Зареждане на дневници" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Опресняването на монитора се провали" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1607,26 +1613,26 @@ msgstr "" "вероятно това се дължи на изтекла сесия. Презареждане страницата и ново " "удостоверяване трябва да помогне." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Презареждане страницата" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Засегнати редове:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Грешка в конфигурационен файл. Изглежда не е валиден JSON код." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Създаването на силмолна таблица с въведеното кодиране се провали. " "Пренастройка към кодирането по подразбиране…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1636,61 +1642,61 @@ msgstr "" msgid "Import" msgstr "Импорт" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Импорт настройки за наблюдателя" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Изберете файла, който искате да импортирате." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "На сървъра няма налични файлове за импорт!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Анализиране заявка" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Съветническа програма" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Възможни проблеми с производителността" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Проблем" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Препоръка" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Детайли за правило" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Подравняване" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Използвана променлива / формула" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Тест" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Форматиране на SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1701,71 +1707,71 @@ msgstr "Форматиране на SQL…" msgid "Cancel" msgstr "Отмяна" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Страница-свързани настройки" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Прилагане" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Зареждане…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Искането е отказано!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Обработка на заявката" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Заявката се провали!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Грешка при обработка на заявката" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Код за грешка: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Текст на грешката: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Няма избрани БД." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Изтриване на колона" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1775,61 +1781,61 @@ msgstr "Добавяне на първичен ключ" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Щракнете, за да скриете това съобщение" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Преименуване БД" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Копиране БД" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Промяна знаков набор" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Включване на проверките за външен ключ" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Неточно преброяване на редовете." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Търсене" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Скриване резултати от търсенето" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Показване резултати от търсенето" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Прелистване" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Изтриване" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Дефиницията на съхранена процедура трябва да съдържа израз RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1846,42 +1852,42 @@ msgstr "Дефиницията на съхранена процедура тря msgid "Export" msgstr "Експорт" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET редактор" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Стойности за колоната %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Стойности за нова колона" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Въвеждайте всяка стойност в отделно поле." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Добавяне %d стойност(и)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Заб.: Ако файлът съдържа няколко таблици, те ще бъдат обединени." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Скриване формата за заявки" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Показване формата за заявки" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1895,7 +1901,7 @@ msgstr "Показване формата за заявки" msgid "Edit" msgstr "Редакция" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1907,41 +1913,41 @@ msgstr "Редакция" msgid "Delete" msgstr "Изтриване" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d не е валиден номер на ред." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Без автоматично запазване на заявка" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Променлива %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Изберете" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Избор на колона" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Търсене в този списък" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1951,15 +1957,15 @@ msgstr "" "колони на базата данни %s има колони, които не присъстват в настоящата " "таблица." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Вижте повече" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Сигурни ли сте?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1967,51 +1973,51 @@ msgstr "" "Това действие може да промени дефиницията на накоя от колоните.
Сифурни " "ли сте, че искате да продължите?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Продължете" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Добавяне на първичен ключ" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Беше добавен главен ключ." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Към следващата стъпка…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Първата стъпка от нормализирането е завършено за таблиза '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Край на стъпката" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Втора стъпка на нормализация (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Готово" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Потвърждаване на частичната зависимост" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Избраните частични зависимостити са следните:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2019,20 +2025,20 @@ msgstr "" "Забележка: а, б -> D, F предполага стойности на колони А и В се комбинират " "заедно могат да се определят стойностите на колона г и колона е." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Няма избрани частични зависимости!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Покажи ми възможните частични зависимости, базирани на данните в таблицата" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Скриване на листа с частичните зависимости" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2040,172 +2046,173 @@ msgstr "" "Облегнете се! Може да отнеме няколко секунди, в зависимост от размера на " "данните и броя на колоните в таблицата." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Стъпка" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Следните действия ще бъдат изпълнени:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "ИЗТРИВАНЕ на колона/и %s от таблицата %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Създаване на следната таблица" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Трета стъпка на нормализация (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Потвърждаване на преходните зависимости" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Избраните зависимости са следните:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Няма избрани зависимости!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Запазване" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Скриване критерий за търсене" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Търсене в област" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Максимум колони:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Минимум колони:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Минимална стойност:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Максимална стойност:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Скриване параметрите за търсене и заместване" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Показване параметрите за търсене и заместване" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Всяка точка представлява ред." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Посочване на точка ще покаже етикета ѝ." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "За да увеличите, изберете част от диаграмата с мишката." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Щракнете върху връзката за възстановяване на мащабирането, за да се върнете " "в състоянието по подразбиране." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Кликнете върху точката с данните, за да видите и евентуално промените реда." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Плотът може да се преоразмерява, като го дръпнете за долния десен ъгъл." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Изберете две колони" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Изберете две различни колони" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Съдържание на точката с данни" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Копиране" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Точка" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Многоъгълник" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Вътрешен пръстен" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Външен контур:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Искате ли да копирате криптиращия ключ?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Криптиращ ключ" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2213,24 +2220,24 @@ msgstr "" "Изглежда сте направили промени на страницата; ще бъдете уведомени преди да " "изоставите промените" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Изберете посочвания ключ" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Моля изберете главен или уникален ключ!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2238,77 +2245,77 @@ msgstr "" "Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги " "запазите. Искате ли да продължите?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Име на страница" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Записване на страница" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Записване на страница като" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Отвори страница" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Изтриване на страница" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Неозаглавено" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Моля изберете страница, за да продължите" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Моля, въведете валидно име на страница" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Искате ли да запишете промените на текущата страница?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Изтриването на страницата е успешно" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Експорт на релационна схема" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Промените бяха запазени" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Добавяне на опция към колона \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d обект(а) бяха създадени." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Изпълнение" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Натиснете Esc за отмяна на редакцията." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2316,15 +2323,15 @@ msgstr "" "Редактирали сте данни и те не са запазени. Наистина ли искате да напуснете " "страницата преди запазването им?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Завличане за промяна на подредбата." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Кликнете за сортиране на резултата по тази колона." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2334,26 +2341,26 @@ msgstr "" "ASC/DESC.
- Control+кликване за премахване на колоната от ORDER BY " "клаузата" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Щракване за маркиране/отмаркиране." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Щракнете двукратно за копиране името на колона." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Щракнете стрелката,
за да изберете колони." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Показване на всички" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2362,11 +2369,11 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Моля въведете валиден шеснадесетичен низ. Валидни символи са 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2374,137 +2381,137 @@ msgstr "" "Наистина ли искате да видите всички редове? За една голяма таблица, това " "може да блокира браузъра." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Първоначална дължина" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "Отмяна" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Прекъснати" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Успех" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Състояние на импорта" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Пуснете файловете тук" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Първо избетере база данни" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете два пъти " "директно върху тях." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете директно върху " "тях." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Към връзка:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Копиране името на колоната." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Кликване с десния бутон върху името на колоната, за да го копирате в " "системния буфер." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Генериране на парола" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Генериране" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Още" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Показване на панела" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Скриване на панела" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Показване на скритото навигационно дърво." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Свързване с главния панел" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Премахване от главния панел" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "За да филтрирате всички бази данни на сървъра, натиснете Enter, след като " "въведете филтър" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "За да филтрирате всички %s в базата данни, натиснете Enter, след като " "въведете филтър" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "Таблици" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "Изглед" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "Процедури" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "събития" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "Функции" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Исканата страница не беше намерена в хронологията, може би е с изтекла " "валидност." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2514,32 +2521,32 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", последната стабилна версия:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "актуално" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Създаване на изглед" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Порт на сървъра" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "представи доклад за грешка" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2547,25 +2554,25 @@ msgstr "" "Възникнала е грешка фатална JavaScript. Бихте ли искали да изпратите доклад " "за грешка?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Промяна на рапорт настройки" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Показване детайли за рапорта" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Вашият износ е непълна, поради нисък изпълнение срок на ниво PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2575,58 +2582,58 @@ msgstr "" "някои от полетата могат да бъдат пренебрегнати, поради max_input_vars " "конфигурацията на PHP." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Засечени са някой грешки на сървъра!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Моля погледнете в края на този прозорец." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Игнориране на всички" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Според настройките си, те се подава в момента, моля, бъдете търпеливи." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Изпълняване на заявката отново?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Наистина ли искате да изтриете отметката: \"%s\"?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s изпълнени заявки %s пъти %s секунди." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Покажи доводи" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Скриване доводи" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2637,331 +2644,331 @@ msgstr "" "вас. В Safari, такъв проблем обикновено се причинява от \"Private Browsing " "Mode\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Преден" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Днес" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "януари" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "февруари" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "март" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "април" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "май" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "юни" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "юли" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "август" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "септември" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "октомври" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "ноември" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "дек" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "неделя" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "понеделник" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "петък" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Сед" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "календар-месец-година" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "няма" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Час" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "минута" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "секунда" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Моля поправете тази област" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Моля въведете валиден емайл адрес" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Моля, въведете валиден URL" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Моля, въведете валидна дата" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Моля въведете валидна дата (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Моля, въведете валиден номер" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Моля, въведете валиден номер на кредитна карта" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Моля, въведете само цифри" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Моля, въведете една и съща стойност отново" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Моля, въведете поне {0} букви" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Моля, въведете стойност между {0} и {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Моля въведете стойност по-малка или равна на {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Въведете стойност по-голяма от или равна на {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Моля, въведете валиден дата или час" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Моля, въведете валиден HEX" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3857,7 +3864,7 @@ msgstr "Индекси" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Действие" @@ -3868,8 +3875,8 @@ msgid "Keyname" msgstr "Име на ключ" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3901,9 +3908,9 @@ msgstr "Колация" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Коментар" @@ -3918,14 +3925,14 @@ msgstr "Индекс %s беше изтрит." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Изтриване" @@ -4037,7 +4044,7 @@ msgstr "Проследяване" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4699,23 +4706,29 @@ msgstr "Набор от многоъгълници" msgid "A collection of geometry objects of any type" msgstr "Набор от геометрични обекти от всякакъв вид" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Цифров" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Дата и час" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Низ" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Пространствен" @@ -4877,7 +4890,7 @@ msgstr "Използване тази стойност" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Редове" @@ -4962,7 +4975,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Име" @@ -8296,7 +8309,8 @@ msgid "No data to display" msgstr "Няма данни" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8340,33 +8354,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Няма избрана колона." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Колоните бяха преместени упешно." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Грешка в заявката" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Таблицата %1$s беше променена." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Грешка в заявката" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промяна" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8377,20 +8392,20 @@ msgstr "Промяна" msgid "Index" msgstr "Индекс" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Пространствен" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Пълнотекстово" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Уникални стойности" @@ -9835,7 +9850,7 @@ msgstr "Нов" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Изглед" @@ -10304,32 +10319,32 @@ msgid "Delete the table (DROP)" msgstr "Изтриване на таблицата (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Анализиране" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Проверка" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Оптимизиране" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Поправяне" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10349,6 +10364,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10565,7 +10581,7 @@ msgstr "Опции при експортиране на данните" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Схема на данните от таблица" @@ -10589,21 +10605,21 @@ msgstr "Описание" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Структура на таблица" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10709,7 +10725,7 @@ msgid "Database:" msgstr "БД" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10816,7 +10832,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10906,7 +10922,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10982,24 +10998,24 @@ msgstr "Да не се използва AUTO_INCREMENT за нулеви сто msgid "AUTO_INCREMENT for table" msgstr "Добавяне AUTO_INCREMENT стойност" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВЕ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ ЗА ТАБЛИЦА" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Грешка при четене на данни:" @@ -15197,7 +15213,7 @@ msgid "Pick from Central Columns" msgstr "Изтриване колона(и)" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15213,92 +15229,92 @@ msgstr "" msgid "after %s" msgstr "след %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Position" msgid "Partition by:" msgstr "Положение" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Стойности за колоната %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Position" msgid "Partitions:" msgstr "Положение" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Position" msgid "Subpartition by:" msgstr "Положение" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Position" msgid "Subpartitions:" msgstr "Положение" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Position" msgid "Partition" msgstr "Положение" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Стойност" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Position" msgid "Subpartition" msgstr "Положение" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Хранилища" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Папка с данни" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Upload directory" msgid "Index directory" msgstr "Папка за качване на файлове" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Съвпадащи редове:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "реда" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "Търсене в таблица" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -16122,32 +16138,51 @@ msgid "at beginning of table" msgstr "В началото на таблицата" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Position" msgid "Partitions" msgstr "Положение" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Не е избран индекс!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Дължина ред" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Дължина ред" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Position" +msgid "Partition table" +msgstr "Положение" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Edit index" +msgid "Edit partitioning" +msgstr "Редактиране" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Изглед за редакция" diff --git a/po/bn.po b/po/bn.po index e2c5e4346c..1d4c5d849a 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-07-14 11:09+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ফাইল এর মত সংরক্ষন" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "পূর্বাবস্থায়" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "সবগুলো নির্বাচন" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "র্ফমে কোন তথ্য নাই!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "অবশ্যই যে কোন একটি শব্দ" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "ইনডেক্স যোগ কর" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "ইনডেক্স সম্পাদনা" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "%s স্বম্ভ ইনডেক্সে যোগ কর" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Server version" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Server version" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "স্তম্ভ সীমিত করা হবে:" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "%s স্বম্ভ ইনডেক্সে যোগ কর" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "আপনাকে অন্তত একটি স্বম্ভ যোগ করতে হবে।" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "অনুসন্ধানের মধ্য" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "প্রভাবিত রোসমুহ:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL অনুসন্ধান:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y এর মানসমূহ" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "হোষ্ট নামটি শুন্য!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "ব্যাবহারকারী নামটি শুন্য!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "পাসওয়ার্ডটি শুন্য!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "পাসওর্য়াডগুলো এক নয়!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "নির্বাচিত ব্যবহারকারীদের মুছে ফেলা হচ্ছে" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "বন্ধ" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "প্রস্তুতকৃত পাতার সংখ্যা।" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "প্রোফাইল আপডেট করা হয়েছে।" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "রো টি মুছা হয়েছে।" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "অন্যান্য" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "সংযোগসমূহ/প্রক্রিয়াসমূহ" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "স্থানীয় পর্যবেক্ষক কনফিগারেশন উপযুক্ত নয়" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1231,165 +1237,165 @@ msgstr "" "কনফিগারেশন কাজ করবে না মনে হয়। আপনার কনফিগরেশন Settings ম্যানু থেকে " "স্বাভাবিকে নির্ধারন করন।" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "অনুসন্ধান ক্যাশের দক্ষতা" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "অনুসন্ধান ক্যাশের ব্যবহার" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "ব্যাবহৃত অনুসন্ধান ক্যাশ" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "সিস্টেম সিপিইউর ব্যবহার" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "সিস্টেম মেমোরী" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "সিস্টেম সোআপ" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "গড় লোড" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "মোট মেমরী" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "ক্যাশড মেমোরী" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "বাফারড মেমোরী" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "উন্মুক্ত মেমোরী" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "ব্যবহৃত মেমোরী" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "মোট সোআপ" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "ক্যাশড সো্‌আপ" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "ব্যবহৃত সোআপ" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "মুক্ত সোআপ" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "প্রেরিত বাইট" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "গৃহীত বাইট" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "সংযোগসমূহ" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "প্রক্রিয়াসমূহ" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "বি" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "কিবা" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "মেবা" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "জিবি" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "টিবি" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "পিবি" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "ইবি" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d টেবিল" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "প্রশ্নসমূহ" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "গমনাগমন" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "সেটিংস" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "গ্রিডে চিত্র যোগকর" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "সিরিজে অন্তত একটি চলক যোগ করুন!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1401,47 +1407,47 @@ msgstr "সিরিজে অন্তত একটি চলক যোগ ক msgid "None" msgstr "কিছু না" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "র্পযবেক্ষন পুনরায় শুরু কর" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "পর্যবেক্ষন বিরতি" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log এবং slow_query_log কার্যকর করা হয়েছে।" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log কার্যকর করা হয়েছে।" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log কার্যকর করা হয়েছে।" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "general_log এবং slow_query_log অকার্যকর করা হয়েছে।" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output টেবলে নির্ধারন করা হয়নি।" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output টেবলে নির্ধারন করা হয়েছে।" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1452,12 +1458,12 @@ msgstr "" "সার্ভার শুধু এগুলোই লগ করছে। সিস্টেমের উপর নির্ভর করে long_query_time ০-২ সেকেন্ডে " "নির্ধারন করা ভাল।" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time %d সেকেন্ডে নির্ধারন করা হয়েছে।" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1466,30 +1472,30 @@ msgstr "" "করবে। আবার চালু করুন:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "log_output %s নির্ধারন কর" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "সক্রিয় %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "নিক্রিয় %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time %d সেকেন্ড নির্ধারন কর।" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1497,57 +1503,57 @@ msgstr "" "আপনি এই চলকগুলো পরিবর্তন করতে পারবেন না। রুট হিসাবে লগইন করুন বা ডাটাবেইজ " "প্রশাসকের সংগে যোগাযোগ করুন।" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "সেটিংস পরিবর্তন" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "বর্তমান সেটিংস" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "চিত্রের নাম" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "পৃথকিকরণ" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "%s দ্বার ভাগ করা হয়েছে" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "একক" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "ধীর লগ থেকে" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "সাধারন লগ থেকে" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "এই অনুসন্ধানের ডাটাবেইজ নামটি সার্ভার লগে নাই।" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "লগ বিশ্লেষন করছি" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "লগসমূহ বিশ্লেষন এবং লোড করছি। কিছু সময লাগবে।" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "অনুরোধ বাতিল" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1557,7 +1563,7 @@ msgstr "" "SQL অনুসন্ধানটিই ব্যবহৃত হয়েছে। অনুসন্ধানগুলোর অন্যান্য বিষয়, যেমন আরম্ভের সময় ইত্যাদি " "পার্থক্য হতে পারে।" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1566,31 +1572,31 @@ msgstr "" "দলবদ্ধ করার জন্য INSERT অনুসন্ধান নির্বাচন করা হয়েছে,একই টেবলের INSERT " "অনুসন্ধানগুলোও insert করা তথ্যগুলো বাদে দলবদ্ধ করা হয়েছে।" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "লগের তথ্য লোড করা হয়েছে। এই সময়ের মধ্য সম্পাদনকৃত অনুসন্ধানসমূহ:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "লগ টেবিলে যাও" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "কোন তথ্য পাওয়া যায় নাই" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "লগ বিশ্লেষন করা হয়েছে, কিন্তু এই সময়ের মধ্যে কোন তথ্য পাওয়া যায়নি।" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "বিশ্লেষন করছি…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "আউটপুটের ব্যাখা" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1598,7 +1604,7 @@ msgstr "আউটপুটের ব্যাখা" msgid "Status" msgstr "অবস্থা" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1608,58 +1614,58 @@ msgstr "অবস্থা" msgid "Time" msgstr "সময়" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "মোট সময়:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "প্রোফাইলিং এর ফলাফল" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "টেবল" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "চিত্র" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "লগ টেবল ফিল্টার অপশন" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "ফিল্টার" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "অনুসন্ধান word/regexp দ্বারা ফিল্টার কর:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "WHERE এর তথ্য উপেক্ষা করে অনুসন্ধান দলবদ্ধ কর" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "দলবদ্ধকৃত রো'র সংখ্যা:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "মোট:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "লোডিং লগ" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "পযবেক্ষক রিফ্রশ ব্যার্থ" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1668,26 +1674,26 @@ msgstr "" "নতুন চিত্রের চেষ্টায় সার্ভার অকার্যকর সাড়া দিয়াছে। মনে হয় আপনার সেশন শেষ হয়ে " "গেছে। পাতাটি রিলোড এবং আবার লগইন হয়ত সাহায্য করবে।" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "পাতাটি রিলোড" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "প্রভাবিত রোসমুহ:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "কনফিগ ফাইলটি পড়তে ব্যর্থ। এটা মনে হয় কার্যকর JSON কোড নয়।" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "আমদানি করা কনফিগারেশন দিয়ে চিত্র তৈরী করতে ব্যর্থ হয়েছি। কনফিগারেশন স্বাভাবিক " "অবস্থায় সেট করা হচ্ছে…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1697,61 +1703,61 @@ msgstr "" msgid "Import" msgstr "আমদানি" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "পর্যবেক্ষকের কনফিগারেশন আমাদনি কর" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "আমদানি করার জন্য ফাইলটি নির্বাচন করুন।" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "অনুসন্ধান বিশ্লেষন" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "উপদেষ্টা ব্যবস্থা" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "সাম্ভাব্য কার্যকারিতার বিষয়" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "ইস্যু" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "সুপারিশ" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "বিশদ নিয়মাবলী" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "যৌক্তিকতা" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "ব্যবহৃত চলক / ফর্মূলা" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "টেষ্ট" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1762,73 +1768,73 @@ msgstr "" msgid "Cancel" msgstr "বাতিল" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "সেটিংস পরিবর্তন" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "প্রয়োগ" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "লোডিং…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "অনুরোধ বাতিল করা হয়েছে!!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "প্রক্রিয়াকরন চলছে" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "অনুরোধ বাতিল করা হয়েছে!!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "নির্দেশ প্রক্রিয়া করনে সমস্যা হয়েছে:" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "ভুল নং:%s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "ভুলটি : %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "স্তম্ভ মুছছি" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "প্রাইমারি কী যোগ কর" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1838,65 +1844,65 @@ msgstr "প্রাইমারি কী যোগ কর" msgid "OK" msgstr "ওকে" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "এই বার্তাটি বন্ধ করতে ক্লীক করুন" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "ডাটাবেইজসমূহের নাম পরিবর্তন করছি" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "ডাটাবেইজের প্রতিলিপি করছি" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "বর্ণ রাশি পরিবর্তন করছি" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "foreign key পরীক্ষা অকার্যকর কর" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "হেডার নিয়ে আসতে ব্যর্থ হয়েছে" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "খোজঁছি" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "খোজাঁর ফলাফল লুকাও" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "খোজাঁর ফলাফল দেখাও" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "দেখছি" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "মুছছি" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "সঞ্চিত ফাংশনে অবশ্যই একটি রির্টান থাকতে হবে!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1913,42 +1919,42 @@ msgstr "সঞ্চিত ফাংশনে অবশ্যই একটি msgid "Export" msgstr "রফতানী" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET সম্পাদক" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "%s স্তম্ভের জন্য তথ্য" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "নতুন স্তম্ভের জন্য তথ্য" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "আলাদা আলাদা ক্ষেত্রে তথ্য দিন।" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d মান যোগ কর" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "টিকা: যদি ফাইলটিতে একাধিক টেবিল থাকে, ওই গুলো একটিতে পরিনত হবে।" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "অনুসন্ধান বক্সটি লুকাও" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "অনুসন্ধান বক্সটি দেখাও" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1962,7 +1968,7 @@ msgstr "অনুসন্ধান বক্সটি দেখাও" msgid "Edit" msgstr "সম্পাদনা" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1974,96 +1980,96 @@ msgstr "সম্পাদনা" msgid "Delete" msgstr "মুছ" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d বৈধ রো নাম্বার নয়।" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "ফরেন মান দেখা" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "চলক" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "কোন স্তম্ভ নির্বাচন করা হয় নাই" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "ডাটাবেইজে খোঁজ" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "উন্মুক্ত মেমোরী" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "সহায়তা করুন" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "প্রাইমারি কী যোগ কর" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s একটি প্রাইমারি কী যোগ করা হয়েছে" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ট্রেকিং প্রতিবেদন" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2071,251 +2077,252 @@ msgstr "" msgid "End of step" msgstr "লাইনের শেষ" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "সম্পন্ন" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর:" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ডাটাবেইজ নিবার্চন করা হয়নি।" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "সংরক্ষন" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "খোজাঁর শর্ত লুকাও" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "খোজাঁর শর্ত দেখাও" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "টেবিলে খোজাঁ" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "স্তম্ভের নাম: " -#: js/messages.php:402 +#: js/messages.php:403 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "টেবলের সর্বোচ্চ সংখ্যা" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত লুকাও" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "পাওয়া এবং প্রতিস্থাপনের শর্ত দেখাও" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "প্রতিটি পয়েন্ট একটি তথ্য সারি।" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "একটি পয়েন্টের উপর মাউস আনলে তার লেবেল দেখাবে।" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "বড় করে দেখার জন্য, অংশটির একটি অংশ মাউজ দ্বারা নির্বাচন করন।" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "মুল অবস্থায় ফিরিয়ে নেওয়ার জন্য জুম রিসেট এ ক্লীক করুন।" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "দেখার জন্য একটি তথ্য পয়েন্ট এ ক্লীক করুন এবং প্রয়োজনে তথ্য সারিটি সম্পাদনা করুন।" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "নীচের ডান কোণার দিকে টেনে এই অংশটির আকৃতি পরিবর্তন করা যাবে।" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "ভিন্ন ভিন্ন দুইটি স্তম্ভ নির্বাচন করুন" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "প্রতিটি পয়েন্টের বিষয়" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "উপেক্ষা" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "প্রতিলিপি" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "পয়েন্ট" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "লাইনস্ট্রিং" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "পলি্গন (বহুভুজ)" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "জ্যামিতি" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ভিতরের গোলক" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "আউটার রিং" -#: js/messages.php:445 +#: js/messages.php:446 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "আপনি কি অন্যান্য সেটিংস আমদানি করতে চান?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "রেফারেন্সড কী নির্বাচন করুন" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "ফরেন কী নির্বাচন করুন" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "অনুগ্রহ করে প্রাথমিক কী বা একটি অনন্য কী নির্বাচন করুন!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "দেখানোর জন্য স্বম্ভ পছন্দ করেন" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2323,97 +2330,97 @@ msgstr "" "আপনি নকশার পরিবর্তন সংরক্ষন করেন নাই। সংরক্ষন না করলে ওগুলো নষ্ট হয়ে যাবে। আপনি " "কি এগুতে চান?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "পাতার নাম" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "পাতা নির্বাচন" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "পাতা নির্বাচন" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "মুক্ত পাতাসমূহ" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "পাতা নির্বাচন" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "একক" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "সম্পাদনার জন্য একটি পাতা পছন্দ করেন" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "আন্তসম্পর্কীয় গঠনের আকৃতি সম্পাদনা বা রফতানী কর" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "পরিবর্তন সংরক্ষন করা হয়েছে" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "স্তম্ভের জন্য একটি অপশন যোগ কর " -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy, php-format #| msgid "%d object(s) created" msgid "%d object(s) created." msgstr "%d অবজেক্ট তৈরী করা হয়েছে" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "জমা" -#: js/messages.php:482 +#: js/messages.php:483 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "সম্পাদনা বাতিল করতে এস্কেপ কী চাপুন" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2421,49 +2428,49 @@ msgstr "" "আপনি কিছু তথ্য সম্পাদনা করেছেন এবং ওগুলো সংরক্ষিত নয়। আপিন কি নিশ্চন্ত যে সংরক্ষনের " "পূর্বে আপনি পাতাটি ত্যাগ করতে চান?" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "পুনবিন্যাসের জন্য টানুন" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "চিহ্নিত/অচিহ্নিত করার জন্য ক্লীক করুন" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "স্তম্ভের নাম প্রতিলিপ করার জন্য দুইবার ক্লীক করুন" -#: js/messages.php:490 +#: js/messages.php:491 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "স্তম্ভ খোলা বন্ধ করতে চাইলে তীর চিহ্নটি ক্লীক করুন" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "সব দেখাও" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2471,167 +2478,167 @@ msgstr "" "এই টেবিলে কোন অনন্য স্তম্ভ নাই। সংরক্ষনের পরে সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার " "জন্য সংযোগগুলো কাজ করবে না।" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "প্রকৃত লেখা" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "বাতিল" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "বাতিলকৃত" -#: js/messages.php:502 +#: js/messages.php:503 #, fuzzy #| msgid "Success." msgid "Success" msgstr "সফল।" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "আমদানি সর্ম্পকিত স্বাভাবিক" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "লগ ফাইলের স্থান" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "টেবল নির্বাচন" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "আপনি প্রায় সমস্ত তথ্য দুই বার ক্লীক করে সরাসরি সম্পাদনা করতে পারবেন।" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "আপনি প্রায় তথ্য সরাসরি ক্লীক করে সম্পাদনা করতে পারবেন।" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "সংযোগে যাও" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "স্তম্ভের নাম প্রতিলিপি" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "স্তম্ভের নামটির উপর ডান ক্লীক করুন ওটা ক্লীপর্বোডে প্রতিলিপি করার জন্য।" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "পাসওর্য়াড উৎপাদন কর" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "উৎপাদন কর" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "অধিক" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "প্যানেল দেখাও" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ইনডেক্স প্যানেল" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "চলাচল ফ্রেইমে লোগো দেখাও" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "টেবল" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Views" msgid "views" msgstr "ভিউসমূহ" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "প্রোসিডিউরস" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "event" msgid "events" msgstr "ইভেন্ট" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "ফাংশনসমূহ" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "পাতাটি হিস্টোরীতে পাওয়া যায়নি, সম্ভবত নষ্ট হয়েগেছে।" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2641,485 +2648,485 @@ msgstr "" "%s, বেরিয়েছে %s।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", সর্বশেষ সুস্থিত সংস্করন:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "তারিখ পর্যন্ত" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "ভিউ তৈরী" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ভুলের প্রতিবেদন দাখিল" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "একটি মারাত্মক জাভা স্ত্রিপট ভুল হয়েছে। আপনি কি এর প্রতিবেদন পাঠাতে চান?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "প্রতিবেদন সেটিংস পরিবর্তন" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "প্রতিবেদনের বিশদ দেখাও" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "উপেক্ষা" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "এই অনুসন্ধানটি আবার দেখাও" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to delete user group \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "আপনি কি নিশ্চিত ভাবে \"%s\" ব্যাবহারকরী দল মুছতে চান?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL query" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "টেবলের মন্তব্য" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "খোজাঁর ফলাফল লুকাও" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "পূর্ববর্তী" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "আজ" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "জানুয়ারী" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "ফেব্রুয়ারী" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "মার্চ" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "এপ্রিল" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "মে" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "জুন" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "জুলাই" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "অগাষ্ট" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "সেপ্টেম্বর" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "অক্টোবর" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "নভেম্বর" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "ডিসেম্বর" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "জান" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "ফেব" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "মার" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "এপ্রি" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "জুল" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "আগ" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "সেপ" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "অক্ট" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "নভে" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "ডিসে" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "সোমবার" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "বুধবার" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "শনিবার" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "রবি" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "সোম" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "মঙ্গল" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "বৃধ" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "বৃহস্পতি" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "শুক্র" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "শনি" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "রবি" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "সোম" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "মঙ্গ" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "বুধ" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "বৃহ" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "শুক্র" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "শনি" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "সপ্তাহ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "বর্ষপঞ্জি-মাস-বছর" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "- কিছু না -" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "ঘন্টা" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "মিনিট" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "সেকেন্ড" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4057,7 +4064,7 @@ msgstr "ইনডেক্সসমূহ" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "কর্ম" @@ -4068,8 +4075,8 @@ msgid "Keyname" msgstr "কী'র নাম" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4101,9 +4108,9 @@ msgstr "ভাষা" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "মন্তব্য" @@ -4118,14 +4125,14 @@ msgstr "ইনডেক্স %s মুছা হয়েছে।" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "মুছ" @@ -4235,7 +4242,7 @@ msgstr "ট্রেকিং" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4930,23 +4937,29 @@ msgstr "বহুভুজের সম্ভার" msgid "A collection of geometry objects of any type" msgstr "জ্যামিতিক অবজেক্টের সম্ভার" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "গানিতিক" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "সময় এবং তারিখ" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "স্ট্রিং" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "স্পাটিয়াল" @@ -5106,7 +5119,7 @@ msgstr "এই মানটি ব্যবহার কর" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "সারির #" @@ -5191,7 +5204,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "নাম" @@ -8337,7 +8350,8 @@ msgid "No data to display" msgstr "প্রর্দশনের কোন তথ্য নাই" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8382,33 +8396,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "স্তম্ভের নাম '%s'টি MySQL'র সংরক্ষিত শব্দ।" msgstr[1] "স্তম্ভের নাম '%s'টি MySQL'র সংরক্ষিত শব্দ।" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "কোন স্তম্ভ নির্বাচন করা হয় নাই" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "স্তম্ভগুলো সফলভাবে সরানো হয়েছে।" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "অনুসন্ধানে ভুল" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "%1$s টেবিলটি সফলভাবে পরিবর্তন করা হয়েছে।" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "অনুসন্ধানে ভুল" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "পরিবর্তন" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8419,20 +8434,20 @@ msgstr "পরিবর্তন" msgid "Index" msgstr "ইনডেক্স" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "স্পাটিয়াল" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "ফুলটেক্সট" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "স্বতন্ত্র মানগুলো" @@ -9882,7 +9897,7 @@ msgstr "নতুন" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "ভিউসমূহ" @@ -10344,32 +10359,32 @@ msgid "Delete the table (DROP)" msgstr "টেবিলটি মুছ (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "নিরীক্ষা" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "পরীক্ষা" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "অপটিমাইজ" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "পুননির্মাণ" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "মেরামত" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10389,6 +10404,7 @@ msgid "Partition %s" msgstr "খন্ড %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "খন্ড মুছ" @@ -10602,7 +10618,7 @@ msgstr "তথ্য স্তুপের অপশন" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "টেবলের জন্য তথ্য স্তুপ করছি" @@ -10626,21 +10642,21 @@ msgstr "সংজ্ঞা" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "টেবলের জন্য টেবলের গঠন" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "ভিউ এর গঠন" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "দর্শনের বর্তমান গঠন" @@ -10730,7 +10746,7 @@ msgid "Database:" msgstr "ডাটাবেইজ:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "ডাটা:" @@ -10834,7 +10850,7 @@ msgid "Data creation options" msgstr "তথ্য তৈরীর অপশন" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "ইনার্সটের পুর্বে টেবল খালি কর" @@ -10920,7 +10936,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10988,24 +11004,24 @@ msgstr "স্তুপকৃত টেবলের জন্য স্বয়ক msgid "AUTO_INCREMENT for table" msgstr "টেবলের জন্য স্বয়ক্রীয় বর্দ্ধিত মান (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "টেবিলের মাইমের ধরন" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "টেবিলের সর্ম্পক" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "ভিউ এর গঠন %s টেবলে রফতানী করা হয়েছে" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "তথ্য পড়ার ভুল:" @@ -15233,7 +15249,7 @@ msgid "Pick from Central Columns" msgstr "চিত্র মুছ" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15249,92 +15265,92 @@ msgstr "প্রথম" msgid "after %s" msgstr "%s এর পরে" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "খন্ড করা হয়েছে" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "%s স্তম্ভের জন্য তথ্য" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "খন্ড %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "খন্ড করা হয়েছে" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "খন্ড করা হয়েছে" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "খন্ড %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "মান" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "খন্ড করা হয়েছে" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "ব্যবস্থাসমূহ" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "তথ্যের হোম ডিরেক্টরী" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "সংরক্ষনের ডিরেক্টরী" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "প্রভাবিত রোসমুহ:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "ব্রাউজ করুন" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "টেবিলে খোজাঁ" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -16128,7 +16144,7 @@ msgid "at beginning of table" msgstr "টেবিলের শুরুতে" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16136,28 +16152,47 @@ msgstr "খন্ড %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "কোন ইনডেক্স তৈরী করা হয়নি!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "খন্ড করা হয়েছে" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "খন্ড করা হয়েছে" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "রো'র দৈর্ঘ্য" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "রো'র দৈর্ঘ্য" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "খন্ড করা হয়েছে" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "খন্ড মুছ" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "সম্পাদনা ভিউ" diff --git a/po/br.po b/po/br.po index 6de68608c6..24cebae185 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-28 11:07+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Enrollañ evel restr" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Adderaouekaat" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Diuzañ pep tra" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Furmskrid diglok !" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "unan eus ar gerioù da nebeutañ" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Niverenn borzh direizh" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Niverenn borzh direizh" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Indexes" msgid "Add index" msgstr "Menegerioù" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "Mod aozañ" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add/Delete columns" msgid "Add %s column(s) to index" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Columns terminated by" msgid "Composite with:" msgstr "Bannoù a echu gant" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add/Delete columns" msgid "Please select column(s) for the index." msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "Hizivaat ar reked" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Linennoù a sell outo :" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "Reked SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "Ober gant an talvoud-mañ" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Goullo eo anv ar servijer !" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Goullo eo anv an implijer !" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Goullo eo ar ger-tremen !" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "O lemel kuit an implijerien diuzet" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Serriñ" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s daolenn" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Template was deleted." msgstr "Diverket eo bet ar sined." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Udb all" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Kevreadennoù/Argerzhioù" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "N'eo ket kenglotus kefluniadur lec'hel an evezhiañ" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1234,136 +1240,136 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Efeduster ar grubuilh rekedoù" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Implij ar grubuilh rekedoù" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Krubuilh rekedoù implijet" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Implij CPU ar reizhiad" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Memor reizhiad" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Takad eskemm reizhiad (swap)" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Karg keitat" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memor hollek" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memor krubuilh" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memor skurzer" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memor vak" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memor implijet" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Takad eskemm klok" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Takad eskemm krubuilhet" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Takad eskemm implijet" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Takad eskemm vak" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Oktedoù kaset" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Oktedoù resevet" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Kevreadennoù" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Argerzhioù" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "o" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "Eio" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1371,32 +1377,32 @@ msgid "%d table(s)" msgstr "%s daolenn" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Goulennoù" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Tremenerezh" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Arventennoù" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Ouzhpennañ ur grafik d'ar gael" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1408,47 +1414,47 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" msgid "None" msgstr "Hini" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Adkregiñ gant an evezhiañ" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Paouez gant an evezhiañ" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "Gweredekaet eo general_log ha slow_query_log." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "Gweredekaet eo general_log." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "Gweredekaet eo slow_query_log." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "Diweredekaet eo general_log ha slow_query_log." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "N'eo ket bet lakaet log_output da TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "Lakaet eo bet log_output da TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1459,12 +1465,12 @@ msgstr "" "bad pelloc'h eget %d eilenn. Erbedet eo reizhañ long_query_time war 0-2 " "eilenn, hervez ho reizhiad." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Reizhet eo bet long_query_time da %d eilenn." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1473,31 +1479,31 @@ msgstr "" "d'an talvoud dre ziouer pa adloc'ho ar servijer :" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Reizhañ log_output da %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Gweredekaat %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Diweredekaat %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "Reizhañ long_query_time da %ds" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1505,106 +1511,106 @@ msgstr "" "N'hallit ket cheñch an arventennoù-mañ. Kevreit dindan root pe kit e " "darempred gant merour ar servijer." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Arventennoù zo bremañ" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Diforc'herezh" -#: js/messages.php:222 +#: js/messages.php:223 #, fuzzy, php-format #| msgid "Divided by %s:" msgid "Divided by %s" msgstr "Rannet dre %s:" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Diwar ar marilh rekedoù gorrek" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Diwar ar marilh hollek" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy #| msgid "Loading logs" msgid "Analysing logs" msgstr "O kargañ ar marilhoù" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "O tielfennañ hag o kargañ marilhoù. Padout pellik a c'hall ober." -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Cancel" msgid "Cancel request" msgstr "Nullañ" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Restr varilh karget. Rekedoù kaset da benn en amzer-mañ :" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Mont da taolenn ar marilh" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Dielfennet eo bet ar marilh hep kavout roadenn ebet evit ar prantad amzer-" "mañ." -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Authenticating…" msgid "Analyzing…" msgstr "O tilesa…" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Displegañ SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1612,7 +1618,7 @@ msgstr "Displegañ SQL" msgid "Status" msgstr "Statud" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1622,91 +1628,91 @@ msgstr "Statud" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total:" msgid "Total time:" msgstr "Hollad :" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "O profilañ" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Taolenn" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Chart Title" msgid "Chart" msgstr "Titl ar grafik" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Dibarzhioù silañ taolenn ar marilhoù" # verb pe ak. ? #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Silañ" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Silañ ar rekedoù dre c'her pe lavarennoù reoliek :" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Sammad al linennoù bodet :" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Hollad :" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "O kargañ ar marilhoù" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Adkargañ ar bajenn" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Linennoù a sell outo :" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1716,69 +1722,69 @@ msgstr "" msgid "Import" msgstr "Enporzhiañ" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "N'eo ket kenglotus kefluniadur lec'hel an evezhiañ" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Hizivaat ar reked" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Teuliadur" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "Dilesadur" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1789,71 +1795,71 @@ msgstr "" msgid "Cancel" msgstr "Nullañ" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "O kargañ…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "O plediñ gant ar reked" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query \"%s\" failed" msgid "Request failed!!" msgstr "C'hwitet eo bet ar reked \"%s\"" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Diverkañ ar bann" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "Ouzhpennañ un alc'hwez kentidik" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1863,66 +1869,66 @@ msgstr "Ouzhpennañ un alc'hwez kentidik" msgid "OK" msgstr "Mat eo" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Oc'h adenvel an diaz roadennoù" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Oc'h eilañ an diaz roadennoù" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "O cheñch ar strobad arouezennoù" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Dibosupl tapout an talbennoù" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "O klask" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Diskouez disoc'hoù an enklask" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "O furchal" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "O tiverkañ" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Bez' e rank bezañ un embannadenn RETURN e termenadur un arc'hwel stoket !" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1939,47 +1945,47 @@ msgstr "" msgid "Export" msgstr "Ezporzhiañ" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Values for the column \"%s\"" msgid "Values for column %s" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:339 +#: js/messages.php:340 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Values for a new column" msgstr "Talvoudoù evit ar bann \"%s\"" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field." msgid "Enter each value in a separate field." msgstr "Merkañ pep talvoud en ur vaezienn a-ziforc'h." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Notenn : ma vez meur a daolenn er restr e vint unanet." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Kuzhat ar voest rekedoù SQL" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Diskouez ar voest rekedoù SQL" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1993,7 +1999,7 @@ msgstr "Diskouez ar voest rekedoù SQL" msgid "Edit" msgstr "Kemmañ" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2005,345 +2011,346 @@ msgstr "Kemmañ" msgid "Delete" msgstr "Diverkañ" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "Diweredekaat %s" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Klask en diaz roadennoù" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Memor vak" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Edit routine" msgid "Continue" msgstr "Kemmañ un argerzh" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Diverket eo bet an alc'hwez kentidik." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Danevell heuliañ" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Graet" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Check privileges for database \"%s\"." msgid "Create the following table" msgstr "Gwiriañ ar gwirioù evit an diaz roadennoù \"%s\"." -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Enrollañ" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Klask" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Bann" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Bann" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Kuzhat an dezverkoù klask" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Poent" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Aradennad linennoù" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Lieskorneg" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Mentoniezh" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Kelc'h diabarzh" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer Ring:" msgid "Outer ring" msgstr "Kelc'h diavaez :" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Diuzit an alc'hwez daveet" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Diuzit an alc'hwez estren" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Dibab ar bann da ziskouez" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2351,294 +2358,294 @@ msgstr "" "N'eo ket bet enrollet ar c'hemmoù degaset d'an tres ganeoc'h. Kollet e vint " "ma n'o enrollit ket. Kenderc'hel memes tra ?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Save as file" msgid "Save page" msgstr "Enrollañ evel restr" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save as file" msgid "Save page as" msgstr "Enrollañ evel restr" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Open" msgid "Open page" msgstr "Digor" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Diverkañ" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select a page to continue" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Niverenn borzh direizh" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Ouzhpennañ un dibarzh evit ar bann " -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Diskouez pep tra" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Aradennad linennoù" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Nullañ" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Talvoudoù enporzhiañ dre ziouer" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Diuzañ pep tra" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Set value: %s" msgid "Go to link:" msgstr "Lakaat an talvoud da %s" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "No rows selected" msgid "Copy column name." msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Genel" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Muioc'h" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Diskouez pep tra" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Kuzhat menegerioù" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Taolennoù" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Gwelet" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Processes" msgid "procedures" msgstr "Argerzhioù" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Reset" msgid "events" msgstr "Adderaouekaat" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Connections" msgid "functions" msgstr "Kevreadennoù" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2648,134 +2655,134 @@ msgstr "" "hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", stumm stabil diwezhañ :" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "hizivaet" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Diskouez pep tra" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Na ober van" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Issued queries" msgid "Execute this query again?" msgstr "Rekedoù resevet" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Kent" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2783,149 +2790,149 @@ msgid "Next" msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Hiziv" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Genver" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "C'hwevrer" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Meurzh" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Ebrel" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mae" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Mezheven" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Gouere" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Eost" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Gwengolo" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Here" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Du" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Kzu" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Sul" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Lun" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Meurzh" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Merc'her" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Yaou" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Gwener" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sadorn" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2933,205 +2940,205 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "L" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Mz" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Mc" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Y" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "G" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Sizh." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Hini" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Eur" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Munut" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Eilenn" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "Maeziennoù testenn" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Niverenn borzh direizh" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Niverenn borzh direizh" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Niverenn borzh direizh" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Niverenn borzh direizh" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Niverenn borzh direizh" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Niverenn borzh direizh" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Niverenn borzh direizh" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Niverenn borzh direizh" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Niverenn borzh direizh" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Niverenn borzh direizh" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Niverenn borzh direizh" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Niverenn borzh direizh" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Niverenn borzh direizh" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Niverenn borzh direizh" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4110,7 +4117,7 @@ msgstr "Menegerioù" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Oberiadenn" @@ -4121,8 +4128,8 @@ msgid "Keyname" msgstr "Anv ar meneger" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4154,9 +4161,9 @@ msgstr "Etrerummadiñ" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Evezhiadenn" @@ -4171,14 +4178,14 @@ msgstr "Diverket eo bet ar meneger %s." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Dilezel" @@ -4290,7 +4297,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4948,19 +4955,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Krouiñ un argerzh" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Linestring" @@ -4968,7 +4981,7 @@ msgctxt "string types" msgid "String" msgstr "Aradennad linennoù" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -5130,7 +5143,7 @@ msgstr "Ober gant an talvoud-mañ" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Linennoù" @@ -5215,7 +5228,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -8383,7 +8396,8 @@ msgid "No data to display" msgstr "Dibab ar bann da ziskouez" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8425,37 +8439,38 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "N'eus bet diuzet linenn ebet" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Diverket eo bet an diaz roadennoù %s." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Routine %1$s has been modified." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Kemmet eo bet an argerzh %1$s." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Kemmañ" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8466,20 +8481,20 @@ msgstr "Kemmañ" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -9914,7 +9929,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10374,32 +10389,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10419,6 +10434,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10639,7 +10655,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -10663,21 +10679,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10781,7 +10797,7 @@ msgid "Database:" msgstr "Diaz roadennoù" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10890,7 +10906,7 @@ msgid "Data creation options" msgstr "Dibarzhioù diskwel an diazoù roadennoù" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10960,7 +10976,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11036,24 +11052,24 @@ msgstr "Arabat ober gant AUTO_INCREMENT evit an talvoudoù par da mann" msgid "AUTO_INCREMENT for table" msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -15103,7 +15119,7 @@ msgid "Pick from Central Columns" msgstr "Dilemel ar grafik" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15119,88 +15135,88 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Relations" msgid "Partition by:" msgstr "Darempredoù" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for the column \"%s\"" msgid "Expression or column list" msgstr "Talvoudoù evit ar bann \"%s\"" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Relations" msgid "Partitions:" msgstr "Darempredoù" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Relations" msgid "Subpartition by:" msgstr "Darempredoù" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Relations" msgid "Subpartitions:" msgstr "Darempredoù" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Relations" msgid "Partition" msgstr "Darempredoù" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Use this value" msgid "Values" msgstr "Ober gant an talvoud-mañ" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Relations" msgid "Subpartition" msgstr "Darempredoù" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "Geriadur roadennoù" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "Linennoù a sell outo :" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Furchal" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Klask" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Add user" msgid "Node group" @@ -16012,32 +16028,51 @@ msgid "at beginning of table" msgstr "Niver a linennoù da ensoc'hañ" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Relations" msgid "Partitions" msgstr "Darempredoù" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "N'eus bet termenet meneger ebet !" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Linestring" msgid "Data length" msgstr "Aradennad linennoù" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Indexes" msgid "Index length" msgstr "Menegerioù" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Relations" +msgid "Partition table" +msgstr "Darempredoù" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Edit mode" +msgid "Edit partitioning" +msgstr "Mod aozañ" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/brx.po b/po/brx.po index 9d2b782bbc..c7afbbf3d4 100644 --- a/po/brx.po +++ b/po/brx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "" -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1088,155 +1092,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1248,47 +1252,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1296,136 +1300,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1433,7 +1437,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1443,82 +1447,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1528,59 +1532,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1591,59 +1595,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1653,55 +1657,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1718,42 +1722,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1767,7 +1771,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1779,556 +1783,557 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2336,437 +2341,437 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:604 +msgid "Show arguments" +msgstr "" + +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3613,7 +3618,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "" @@ -3624,8 +3629,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3657,9 +3662,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3674,14 +3679,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "" @@ -3791,7 +3796,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4413,23 +4418,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4577,7 +4588,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "" @@ -4656,7 +4667,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7433,7 +7444,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7467,32 +7479,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7503,20 +7516,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -8845,7 +8858,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9279,32 +9292,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9322,6 +9335,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9526,7 +9540,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9550,21 +9564,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9654,7 +9668,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9746,7 +9760,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9816,7 +9830,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9881,24 +9895,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13680,7 +13694,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13694,64 +13708,64 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14451,26 +14465,39 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +msgid "Partition table" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +msgid "Edit partitioning" +msgstr "" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/bs.po b/po/bs.po index be57f22f9d..a010d82f3c 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-31 14:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Sačuvaj kao datoteku" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Resetuj" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Izaberi sve" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Nedostaje vrijednost u obrascu!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "bar jednu od riječi" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Dodaj novo polje" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Index" msgid "Edit index" msgstr "Ključ" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Dodaj novo polje" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Verzija servera" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Verzija servera" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Polja ograničena sa" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy msgid "Please select column(s) for the index." msgstr "Dodaj novo polje" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "u upitu" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Sub" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL upit" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Vrijednost" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Ime hosta je prazno!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Ime korisnika nije unijeto!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:125 +#: js/messages.php:126 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "Tabela %s je odbačena" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil je promjenjen." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Red je obrisan" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Konekcije" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1224,172 +1230,172 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy msgid "Query cache efficiency" msgstr "Vrsta upita" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy msgid "Query cache usage" msgstr "Vrsta upita" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy msgid "Query cache used" msgstr "Vrsta upita" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Zauzeće" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Ukupno" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Ukupno" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Zauzeće" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Konekcije" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "bajta" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tabela" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Operacije" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Saobraćaj" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Opšte osobine relacija" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1401,47 +1407,47 @@ msgstr "" msgid "None" msgstr "nema" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1449,152 +1455,152 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Sačuvaj kao datoteku" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Omogućeno" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onemogućeno" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Upit je trajao %01.4f sekundi" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Opšte osobine relacija" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Uvoz fajlova" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "Lokalni" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "Baza ne postoji" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Baza ne postoji" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1602,7 +1608,7 @@ msgstr "Objasni SQL" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1612,98 +1618,98 @@ msgstr "Status" msgid "Time" msgstr "Vrijeme" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ukupno" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL rezultat" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabela" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Karakter set" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Opcije tabele" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Broj redova po strani" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ukupno" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "Lokalni" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy msgid "Reload page" msgstr "Promjeni ime tabele u " -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1714,65 +1720,65 @@ msgstr "" msgid "Import" msgstr "Izvoz" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ažuriraj upit" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentacija" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentacija" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1783,70 +1789,70 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Opšte osobine relacija" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "Lokalni" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Procesi" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy msgid "Request failed!!" msgstr "Vrsta upita" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Inside table(s):" msgid "Dropping column" msgstr "Unutar tabela:" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy msgid "Adding primary key" msgstr "Dodaj novo polje" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1856,67 +1862,67 @@ msgstr "Dodaj novo polje" msgid "OK" msgstr "U redu" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy msgid "Renaming databases" msgstr "Promjeni ime tabele u " -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy msgid "Copying database" msgstr "Baza ne postoji" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Karakter set" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Pretraživanje" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pregled" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brišem %s" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1933,45 +1939,45 @@ msgstr "" msgid "Export" msgstr "Izvoz" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Broj redova po strani" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1985,7 +1991,7 @@ msgstr "SQL upit" msgid "Edit" msgstr "Promeni" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1997,94 +2003,94 @@ msgstr "Promeni" msgid "Delete" msgstr "Obriši" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Promjenljiva" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Pretraživanje baze" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Osnovni ključ je upravo dodan %s." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Promijeni" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2092,284 +2098,285 @@ msgstr "" msgid "End of step" msgstr "Na kraju tabele" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nije izabrana ni jedna baza." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sačuvaj" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Pretraživanje" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Imena kolona" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Imena kolona" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/obriši kolonu" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Sadržaj" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Linije se završavaju sa" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Dodaj novog korisnika" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Linije se završavaju sa" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Izaberi sve" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Izaberi sve" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2377,266 +2384,266 @@ msgstr "Izaberi sve" msgid "Open page" msgstr "Zauzeće" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Izaberi sve" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relaciona shema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Broj redova po strani" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Pošalji" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Imena kolona" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Linije se završavaju sa" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Uvoz fajlova" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Baza ne postoji" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Imena kolona" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dodaj novo polje" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Prikaži mrežu" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy msgid "Link with main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy msgid "Unlink from main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tabele" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy msgid "views" msgstr "Polja" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy msgid "procedures" msgstr "Procesi" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy msgid "events" msgstr "Poslato" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "Funkcija" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2644,136 +2651,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "Izbor servera" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "Izbor servera" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opšte osobine relacija" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "Prikaži tabele" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Da li stvarno hoćete da " -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2781,96 +2788,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "maj" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2878,78 +2885,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "dec" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2957,199 +2964,199 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Izaberite bazu" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4128,7 +4135,7 @@ msgstr "Ključevi" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Akcija" @@ -4139,8 +4146,8 @@ msgid "Keyname" msgstr "Ime ključa" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4172,9 +4179,9 @@ msgstr "Sortiranje" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 #, fuzzy msgid "Comment" msgstr "Komentari" @@ -4190,14 +4197,14 @@ msgstr "Ključ %s je obrisan." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Odbaci" @@ -4307,7 +4314,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4969,19 +4976,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Napravi novi ključ" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -4989,7 +5002,7 @@ msgctxt "string types" msgid "String" msgstr "Linije se završavaju sa" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5154,7 +5167,7 @@ msgstr "Koristi ovu vrijednost" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Redova" @@ -5240,7 +5253,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Ime" @@ -8253,7 +8266,8 @@ msgid "No data to display" msgstr "Baza ne postoji" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8296,38 +8310,39 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No databases selected." msgid "No column selected." msgstr "Nije izabrana ni jedna baza." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Izabrani korisnici su uspješno obrisani." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Izabrani korisnici su uspješno obrisani." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promijeni" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8338,20 +8353,20 @@ msgstr "Promijeni" msgid "Index" msgstr "Ključ" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Tekst ključ" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy msgid "Distinct values" msgstr "Pregledaj strane vrijednosti" @@ -9818,7 +9833,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10284,34 +10299,34 @@ msgid "Delete the table (DROP)" msgstr "Baza ne postoji" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Check" msgstr "Češki" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 #, fuzzy msgid "Repair" msgstr "Popravi tabelu" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10331,6 +10346,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10558,7 +10574,7 @@ msgstr "Opcije za izvoz baze" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Prikaz podataka tabele" @@ -10585,14 +10601,14 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Struktura tabele" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10600,7 +10616,7 @@ msgstr "Samo struktura" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10712,7 +10728,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10825,7 +10841,7 @@ msgid "Data creation options" msgstr "Opcije transformacije" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10895,7 +10911,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10976,24 +10992,24 @@ msgstr "Dodaj AUTO_INCREMENT vrijednost" msgid "AUTO_INCREMENT for table" msgstr "Dodaj AUTO_INCREMENT vrijednost" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Samo struktura" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15179,7 +15195,7 @@ msgid "Pick from Central Columns" msgstr "Promjeni ime tabele u " #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15196,90 +15212,90 @@ msgstr "" msgid "after %s" msgstr "Poslije %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Relations" msgid "Partition by:" msgstr "Relacije" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of rows per page" msgid "Expression or column list" msgstr "Broj redova po strani" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Relations" msgid "Partitions:" msgstr "Relacije" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Relations" msgid "Subpartition by:" msgstr "Relacije" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Relations" msgid "Subpartitions:" msgstr "Relacije" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Relations" msgid "Partition" msgstr "Relacije" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Vrijednost" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Relations" msgid "Subpartition" msgstr "Relacije" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "Rečnik podataka" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "Tip ključa :" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Start" msgid "Max rows" msgstr "Sub" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Pregled" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Pretraživanje" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16140,32 +16156,51 @@ msgid "at beginning of table" msgstr "Na početku tabele" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Relations" msgid "Partitions" msgstr "Relacije" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Ključ nije definisan!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Dužina reda" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Dužina reda" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Relations" +msgid "Partition table" +msgstr "Relacije" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Add new field" +msgid "Edit partitioning" +msgstr "Dodaj novo polje" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/ca.po b/po/ca.po index cb15d64700..63dae2f195 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-28 16:49+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: Catalan " -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1005,161 +1011,161 @@ msgstr "" "Estàs segur de voler canviar tots els jocs de caràcters de columna i " "convertir les dades?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Desa i tanca" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Reinicia" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Reinicia tot" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Falta un valor al formulari!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Tria al menys una d'aquestes opcions!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Entra un numero vàlid!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Entra una longitud vàlida!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Afegir índex" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Editar índex" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Afegeix %s columna(es) a l'index" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Crea un índex d'una sola columna" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Crea una índex compost" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Composa amb:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Tria columna(es) per a l'índex." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Has d'afegir al menys una columna." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Vista prèvia de l'SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simulació de consulta" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Files coincidents:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "Consulta SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Valors Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "El nom del servidor és buit!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "El nom d'usuari és buit!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "La contrasenya és buida!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Treu els usuaris triats" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Tanca" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "S'ha creat la plantilla." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Plantilla carregada." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "S'ha actualitzat la plantilla." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "S'ha esborrat la plantilla." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Connexions / Processos" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Configuració local de la monitorització incompatible!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1172,155 +1178,155 @@ msgstr "" "més. Si us plau, restableixi la configuració per defecte al menú " "Configuració." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Eficiència del cau de consultes" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Ús de la memòria cau de consultes" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Memòria cau de consultes utilitzada" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Ús de la CPU del sistema" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Memòria del sistema" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Intercanvi del sistema" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Mitjana de càrrega" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memòria total" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memòria al cau" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memòries intermitges" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memòria lliure" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memòria utilitzada" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Intercanvi total" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Intercanvi en cau" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Intercanvi utilitzat" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Intercanvi lliure" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes enviats" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bytes rebuts" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Connexions" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d taula(es)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Consultes" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Tràfic" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Configuració" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Afegeix gràfic a a la graella" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Afegeix al menys una variable a les series!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1332,47 +1338,47 @@ msgstr "Afegeix al menys una variable a les series!" msgid "None" msgstr "Res" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Reempren la monitorització" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Pausa la monitorització" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Començar auto recarregar" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Aturar auto recarregar" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "«general_log» i «slow_query_log» estàn actius." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "«general_log» està actiu." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "«slow_query_log» està actiu." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "«slow_query_log» i «general_log» estàn desactivats." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "«log_output» no està definit com a TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "«log_output» està definit com a TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1383,12 +1389,12 @@ msgstr "" "més de %d segons. És recomenable configurar «long_query_time» entre 0 i 2 " "segons depenent del sistema." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "«long_query_time» està configurat a %d segon(s)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1397,30 +1403,30 @@ msgstr "" "valors predeterminats en reiniciar el servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Activar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir «long_query_time» a %d segons." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1428,59 +1434,59 @@ msgstr "" "No pots canviar aquestes variables. Inicia la sessió com a root o contacta " "amb el teu administrador de bases de dades." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Canviar configuracions" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Configuracions actuals" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Títol del gràfic" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Dividit per %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unitat" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Del registre de consultes lentes" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Del registre general" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "No es coneix el nom de la base de dades per aquesta consulta als registres " "del servidor." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "analitzant registres" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Analitzant i carregant registres. Pot tardar." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Cancel.lar petició" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1491,7 +1497,7 @@ msgstr "" "d'agrupació, donat que la resta d'atributos de les consultes pot diferir, " "com el temps d'inici.." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1500,34 +1506,34 @@ msgstr "" "Donat que s'ha triat agrupar consultes INSERT, les consultes INSERT a la " "mateixa taula també s'han agrupat, sense importar les dades afegides." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "S'han carregat les dades del registre. Consultes executades en aquest " "període de temps:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Saltar a la taula del registre" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "No s'han trobat dades" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Registre analitzat, però no s'han trobat dades en aquest periode de temps." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analitzant…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Explicar sortida" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1535,7 +1541,7 @@ msgstr "Explicar sortida" msgid "Status" msgstr "Estat" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1545,58 +1551,58 @@ msgstr "Estat" msgid "Time" msgstr "Temps" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Temps total:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Perfilant resultats" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Taula" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Gràfic" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Opcions de filtres per a la taula del registre" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtrar consultes per paraula/expresió regular:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar consultes, ignorant dades variables en clàusules WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Suma de files agrupades:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Carregant els registres" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Ha fallat l'actualització de la monitorització" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1606,28 +1612,28 @@ msgstr "" "vàlida. La causa més probable d'aixó és que la sessió ha finalitzat. Pot ser " "d'ajuda recarregar la pàgina i tornar a entrar les dades de connexió." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Recarregar pàgina" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Files afectades:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Ha fallat la interpretació de l'arxiu de configuració. No sembla que sigui " "codi JSON vàlid." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Ha fallat la creació de la graella del gràfic amb la configuració importada. " "Restablint la configuració per defecte…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1637,59 +1643,59 @@ msgstr "" msgid "Import" msgstr "Importa" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importar configuració del monitor" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Tria l'arxiu a importar." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "No hi ha arxius disponibles al servidor per importar!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analitzar consulta" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Sistema d'assessorament" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Possibles problemes de rendiment" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problema" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Recomanacions" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Detalls de la regla" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Justificació" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Variable usada / formula" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Prova" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Donant format a l'SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1700,59 +1706,59 @@ msgstr "Donant format a l'SQL…" msgid "Cancel" msgstr "Cancel.lar" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Configuració de la pàgina relacionada" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Carregar…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Petició avortada!!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Processant petició" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Petició fallida!!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Error processant a la petició" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Codi d'error: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Text de l'error: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "No s'han triat bases de dades." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Eliminant columna" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Afegint clau principal" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1762,56 +1768,56 @@ msgstr "Afegint clau principal" msgid "OK" msgstr "Correcte" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Prem per rebutjar aquest avís" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Reanomenant bases de dades" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Copiant base de dades" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Canviant de joc de caràcters" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Activa les comprovacions de claus externes" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Error en obtenir la quantitat real de files." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Cercar" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Amaga els resultats de cerca" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Mostrar resultats de cerca" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Navegant" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Esborrant" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "La definició d'una funció enmagatzemada ha d'incloure una instrucció RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1828,42 +1834,42 @@ msgstr "" msgid "Export" msgstr "Exporta" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "editor de ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Valors per la columna %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Valors per la nova columna" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Entra cada valor en un camp separat." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Afegir %d valors" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Nota: Si l'arxiu conté múltiples taules, es combinaran en una." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Amagar quadre de consultes" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Mostrar quadre de consultes" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1877,7 +1883,7 @@ msgstr "Mostrar quadre de consultes" msgid "Edit" msgstr "Edita" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1889,41 +1895,41 @@ msgstr "Edita" msgid "Delete" msgstr "Esborra" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d no és un num. vàlid de fila." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Navega valors externs" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Cap consulta desada automàticament" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Triar" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Selector de columnes" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Cerca a aquesta llista" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1933,15 +1939,15 @@ msgstr "" "columnes per a la base de dades %s tingui columnes que no estiguin a la " "taula actual." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Veure més" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Estàs segur?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1949,51 +1955,51 @@ msgstr "" "Aquesta acció pot canviar la definició d'algunes columnes.
Estàs segur " "de voler continuar?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Continua" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Afegir clau principal" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "S'ha afegit una clau principal." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Portant-te al següent pas…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "S'ha completat el primer pas de la normalització per a la taula '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Fi de pas" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Segon pas de normalització (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Fet" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Confirmar dependències parcials" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Les dependències parcials seleccionades són:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2001,20 +2007,20 @@ msgstr "" "Nota: a, b -> d, f implica que els valors combinats de les columnes a i b " "poden determinar el valor de les columnes d i f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "No s'han triat dependències parcials!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostra'm les possibles dependències parcials basades en les dades de la taula" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Amaga la llista de dependències parcials" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2022,166 +2028,167 @@ msgstr "" "Paciència! Pot tardar uns segons, depenent de la mida de les dades i de la " "quantitat de columnes de la taula." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Pas" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Les següents accions es faràn:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnes %s de la taula %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Crea la següent taula" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Tercer pas de la normalització (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Confirmar dependències transitives" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Les dependències seleccionades són:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "No s'han triat dependències!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Desa" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Amaga el criteri de cerca" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Interval de cerca" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Màxim de columna:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Mínim de columna:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Valor mínim:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Valor màxim:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Amaga el criteri de cerca i reemplaça" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Mostrar el criteri de cerca i reemplaça" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Cada punt representa una fila de dades." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Situant el cursor sobre un punt es mostrarà la seva etiqueta." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Per acostar, selecciona una secció del gràfic amb el ratolí." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Feu clic al botó de restaurar ampliació per tornar a l'estat original." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Prem en un punt de dades per veure i possiblement editar la fila de dades." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "El gràfic es pot re-dimensionar arrossegant la cantonada inferior dreta." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "selecciona dues columnes" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Selecciona dues columnes diferents" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Contingut del punter de dades" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Còpia" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punt" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Cadena de línies" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polígon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Cercle interior" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Cercle exterior" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Vols copiar la clau de xifratge?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Clau d'encriptació" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2189,24 +2196,24 @@ msgstr "" "Indica que has fet canvis en aquesta pàgina; se't preguntarà per la teva " "confirmació abans d'abandonar els canvis" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Tria la clau principal o una clau única!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Tria la columna a mostrar" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2214,77 +2221,77 @@ msgstr "" "No has desat els canvis en el disseny. Es perdran si no els deses. Vols " "continuar?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Nom de pàgina" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Desa la pàgina" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Desa la pàgina com" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Obre la pàgina" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "esborra la pàgina" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sense títol" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Tria una pàgina per continuar" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Entra un nom de pàgina vàlid" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Vols desar els canvis a la pàgina actual?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Pàgina esborrada correctament" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Exporta l'esquema relacional" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Afegeix una opció per a la columna \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objecte(s) creat(s)." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Envia" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Prem la tecla escape per cancel·lar la edició." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2292,15 +2299,15 @@ msgstr "" "Has editat algunes dades i no s'han desat. Estàs segur que vols sortir " "d'aquesta pàgina per desar les dades?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Arrossega per reordenar." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Cliqueu per ordenar els resultats segons aquest columna." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2311,28 +2318,28 @@ msgstr "" "o Alt mentre cliqueu (Mac: Majúscules i Option mentre cliqueu) per treure " "aquesta columna de la clàusula «ORDER BY»" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Prem per marcar/desmarcar." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Feu doble clic per copiar el nom de columna." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Prem a la fletxa de llista desplegable
per alternar la visibilitat de " "la columna." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Mostra tot" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2341,13 +2348,13 @@ msgstr "" "l'edició de quadrícula, checkbox, Editar, Copiar i Esborrar enllaços poden " "no funcionar després de desar." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Introdueix una cadena hexadecimal correcta. Els caracters vàlids són 0-9 i A-" "F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2355,127 +2362,127 @@ msgstr "" "De veritat vols veure totes les files? Una taula gran pot fer fallar el " "navegador." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Longitud inicial" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "Cancel.lar" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Avortat" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Correcte" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Importar l'estat" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Deixa anar els arxius aquí" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Tria primer la base de dades" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "També pots editar més valors
fent doble-clic en el seu contingut." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "També pots editar la majoria dels valors
prement directament en el seu " "contingut." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Vés a l'enllaç:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Copia el nom de la columna." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Feu clic amb el botó dret al nom de la columna per copiar al porta-retalls." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Genera" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Més" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Mostra el panell" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Amagar el panell" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Mostra l'arbre d'ítems amagat." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Enllaç amb el panell principal" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Desenllaça amb el panell principal" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Per a filtrar totes les bases de dades al servidor, prem Enter després d'un " "terme de la cerca" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Per a filtrar %s a la base de dades, prem Enter després d'un terme de cerca" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "taules" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "vistes" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "procediments" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "esdeveniments" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funcions" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "No s'ha trobat la pàgina demanada a l'historial, pot haver caducat." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2485,43 +2492,43 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "actualitzat" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Crea una vista" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Enviar informe d'error" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Presentar informe d'error" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "S'ha produït un error fatal de JavaScript. Vols enviar un informe d'errors?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Canviar les configuracions de l'informe" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Mostra el detall de l'informe" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2529,7 +2536,7 @@ msgstr "" "La vostra exportació és incomplerta degut al límit de temps d'execució massa " "baix a nivell de PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2538,59 +2545,59 @@ msgstr "" "Avís: un formulari d'aquesta pàgina té més de %d camps. En enviar-lo es " "poden ignorar alguns camps donada la configuració «max_input_vars» de PHP." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Detectats alguns errors al servidor!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Mira al peu d'aquesta finestra." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignora tot" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Un moment, s'estan enviant en aquest moment degut a la teva configuració." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Executar aquesta consulta de nou?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Realment vols esborrar aquesta marca?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "S'ha produït algun error en obtenir informació de depuració SQL." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultes executades %s vegades en %s segons." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(s) correctes" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Mostra els arguments" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Amaga els arguments" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Temps dedicat:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2601,331 +2608,331 @@ msgstr "" "correctament. En Safari, aixó pot estar causat pel \"Mode de Navegació " "Privada\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Mes anterior" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Mes següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Avui" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Gener" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Febrer" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Març" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Abril" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Maig" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Juny" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Juliol" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Agost" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Setembre" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Octubre" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Novembre" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Des" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Divendres" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Se" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendari-mes-any" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "Sufix de l'any" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Hora" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minut" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Segon" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Aquest camp és obligatori" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Corregeix aquest camp" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Entra una adreça de correu electrònic vàlida" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Entra una URL vàlida" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Entra una data vàlida" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Entra una data vàlida (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Entra un numero vàlid" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Entra un numero vàlid de targeta de crèdit" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Entra només digits" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Entra el mateix valor un altre cop" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Entra no més de {0} caracters" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Entra al menys {0} caracters" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Entra un valor de entre {0} i {1} caracters de mida" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Entra un valor entre {0} i {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Entra un valor menor o igual a {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Entra un valor més gran o igual a {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Entra una hora o data vàlida" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Entra valor HEX correcte" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3788,7 +3795,7 @@ msgstr "Indexos" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Acció" @@ -3799,8 +3806,8 @@ msgid "Keyname" msgstr "Nom de clau" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3832,9 +3839,9 @@ msgstr "Ordenació" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Comentari" @@ -3849,14 +3856,14 @@ msgstr "S'ha esborrat l'índex %s." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Elimina" @@ -3970,7 +3977,7 @@ msgstr "Seguiment" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4660,23 +4667,29 @@ msgstr "Una col·lecció de polígons" msgid "A collection of geometry objects of any type" msgstr "Una col·lecció d'objectes geomètrics de qualsevol tipus" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numèric" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Data i hora" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Cadena" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -4825,7 +4838,7 @@ msgstr "Fes servir aquest valor" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Fila" @@ -4908,7 +4921,7 @@ msgstr "NO" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nom" @@ -7994,7 +8007,8 @@ msgid "No data to display" msgstr "No hi ha dades per mostrar" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8028,32 +8042,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "El nom '%s' és una paraula clau reservada de MySQL." msgstr[1] "Els noms '%s' són paraules clau reservades de MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "No s'han triat columnes." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Les columnes s'han mogut correctament." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Error de consulta" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "S'ha modificat la taula %1$s correctament. Els permisos s'han ajustat." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Error de consulta" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Canvi" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8064,20 +8079,20 @@ msgstr "Canvi" msgid "Index" msgstr "Índex" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Text sencer" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Valors diferents" @@ -9497,7 +9512,7 @@ msgstr "Nou" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Vistes" @@ -9981,32 +9996,32 @@ msgid "Delete the table (DROP)" msgstr "Esborra la taula (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analitza" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Comprova" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimitza" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Reconstrueix" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Repara" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Truncar" @@ -10024,6 +10039,7 @@ msgid "Partition %s" msgstr "Partició %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Elimina particionament" @@ -10236,7 +10252,7 @@ msgstr "Opcions de bolcat de dades" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Bolcant dades de la taula" @@ -10260,21 +10276,21 @@ msgstr "Definició" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Estructura de la taula" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Estructura per a vista" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Estructura de suport per a vistes" @@ -10365,7 +10381,7 @@ msgid "Database:" msgstr "Base de dades:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Dades:" @@ -10466,7 +10482,7 @@ msgid "Data creation options" msgstr "Opcions de creació de dades" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Truncar taula abans d'inserir" @@ -10550,7 +10566,7 @@ msgstr "Sembla que la teva base de dades fa servir procediments;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "exportar els àlies podria no funcionar correctament en tots els casos." @@ -10615,24 +10631,24 @@ msgstr "AUTO_INCREMENT per les taules bolcades" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la taula" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "TIPUS MIME PER LA TAULA" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELACIONS DE LA TAULA" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Sembla que la teva base de dades fa servir disparadors (-triggers-);" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estructura per a vista %s exportada com a taula" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Error llegint dades:" @@ -14779,7 +14795,7 @@ msgid "Pick from Central Columns" msgstr "Selecciona des de les columnes centrals" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Expressió" @@ -14793,64 +14809,64 @@ msgstr "primer" msgid "after %s" msgstr "Després de %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "Partició per:" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "Expressió o llista de columnes" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "Particions:" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "Subpartició per:" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "Subparticions:" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "Partició" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "Valors" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "Subpartició" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "Motor" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "Directori de dades" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "Directori d'índex" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "Màxim de files" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "Mínim de files" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "Espai de taula" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "Grup de node" @@ -15574,26 +15590,45 @@ msgid "at beginning of table" msgstr "a l'inici de la taula" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Particions" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "No s'ha definit l'índex!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Particionat per:" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Subparticionat per:" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Mida de les dades" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Mida de l'index" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition by:" +msgid "Partition table" +msgstr "Partició per:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Elimina particionament" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Editar vista" diff --git a/po/ckb.po b/po/ckb.po index 24b86aa457..b3941038eb 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-14 09:27+0200\n" "Last-Translator: muhammad \n" "Language-Team: Kurdish Sorani " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "پاشەکەوتکردن و داخستن" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "سەرلەنوێ" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "پەشیمانبوونەوە لە هەموو" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "بیرچوونی نرخێک لە فۆڕمەکە!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "لانیکەم یەک هەڵبژاردە هەڵبژێرە!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "تکایە ژمارەیەکی درووست بنووسە!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "تکایە درێژییەکی درووست بنووسە!" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "زیادکردنی نیشاندەر" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "چاکردنی نیشاندەر" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "خانەکانی %s زۆر بکە بۆ پێڕست" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "درووستکردنی پێڕستی یەک خانەیی" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "خانە هەڵبژێرە بۆ پێڕست." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "پێویستە بە لانی کەم یەک خانە درووست بکەیت." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "پێشاندانی SQL" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "لە داواکاری" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "ریزە هاوتاکان:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "داواکاری سیكوێڵ" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "نرخەکانی Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "ناوی خانەخوێ بەتاڵە!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "ناوی بەکارهێنانی خانەخوێ بەتاڵە!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "وشەی نهێنی بەتاڵە!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "تێپەڕە وشەکان وەک یەک نین!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "سڕینەوەی بەکارهێنەرە دەست نیشانکراوەکان" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "داخستن" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "ڕیزەکە سڕایەوە" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "هیتر" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "بەستنەکان / پڕۆسەکان" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "چاودێری شێوه‌پێدانی ناوخۆیی نەگونجاوە" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1164,167 +1170,167 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "لێهاتوویی بیرگەی داواکاری" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "بەکارهێنانی بیرگەی داواکاری" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "بیرگەی داواکاری بەکارهاتوو" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "بەکارهێنانی سی‌ پی‌ یوو‌ی سیستەم" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "یادی سیستەم" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "ئاڵوگۆڕی سیستەم" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "ڕێژەی بار" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "سەرجەمی یاد" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "یادی بارکراو" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "یادی هەڵگیراو" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "یادی بەتاڵ" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "یادی بەکارهاتوو" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "سەرجەمی ئاڵوگۆڕ" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "ئاڵوگۆڕی بارکراو" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "ئاڵوگۆڕی بەکارهاتوو" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "ئاڵوگۆڕی بەتاڵ" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "بایت نێردرا" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "بایت وەرگیرا" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "بەستنەکان" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "پڕۆسەکان" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "بایت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "کیلۆبایت" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "مێگابایت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "گێگابایت" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "تێرابایت" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "پێتابایت" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "ئێکسابایت" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d خشتە(کان)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "پرسیارەکان" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "هاتووچوو" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "ڕێکخستنەکان" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "زیادکردنی هێلکاری بۆ تۆڕ" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زیاد بکە" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1336,47 +1342,47 @@ msgstr "تکایە لانی کەم یەک گۆڕاو بۆ زنجیرەکە زی msgid "None" msgstr "هیچ" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "خستنەوەکاری چاودێری" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "ڕاگرتنی چاودێری" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "دەستپێکردنی نوێکردنەوەی خۆکارانە" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "ڕاگرتنی نوێکردنەوەی خۆکارانە" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log و slow_query_log چالاککراون." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log چالاککراوە." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log چالاککراوە." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log و general_log ناچالاککراون." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output دانەنراوە بۆ خشتە." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output دانراوە بۆ خشتە." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1387,42 +1393,42 @@ msgstr "" "%d چرکە بخایەنن. باشترە کە کاتیی long_query_time کەم بکرێتەوە بۆ 0 تا 2 " "چرکە، بەپێی تواناکانی ڕاژەکار." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time ڕێکخراوە بۆ to %d چرکە." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "log_output دانێ بۆ %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "چالاککردن %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "ناچالاککردن %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time ڕێکبخە بۆ %d." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1430,95 +1436,95 @@ msgstr "" "تۆ ناتوانیت ئەم گۆڕاوانە بگۆڕیت. تکایە وەک root بڕۆ ژوورەوە یان پەیوەندی بە " "بەڕێوبەری بنکە دراوەکەت بکە." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "گۆڕینی ڕێکخستنەکان" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "ڕێکخستنەکانی هەنووکە" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "جیاكاری" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "دابەشکراوە لەلایەن %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "یەکە" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "لە تۆماری خاوەوە" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "لە تۆماری گشتیەوە" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "شیکردنەوەی تۆمارەکان" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "شیکردنەوە & کردنەوەی تۆمارەکان. لەوانەیە کاتێکی کەمی پێ بچێت." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "لابردنی داواکاری" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "داتا تۆمارکراوەکان کرانەوە،داواکاریەکان جێبەجێ ئەکرێن لەم کاتەدا:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "بڕۆ بۆ تۆماری خشتە" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "هیچ زانیاریەک نەدۆزراوە" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "تۆمارەکە لێکدراوە، بەڵام هیچ زانیاریەک نەدۆزرایەوە لەو ماوەیە." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "لێکدانەوە…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "ڕوونکردنەوەی دەرەنجام" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1526,7 +1532,7 @@ msgstr "ڕوونکردنەوەی دەرەنجام" msgid "Status" msgstr "ڕەوش" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1536,84 +1542,84 @@ msgstr "ڕەوش" msgid "Time" msgstr "کات" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "هەموو کاتەکان:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "ئەنجامەکانی پڕۆفایل" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "خشتە" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "هێلکاری" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "هەڵبژاردنەکانی پاڵێوی تۆماری خشتە" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "پاڵێو" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "پاڵاوتنی داواکاریەکان بە word/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "کۆی گشتیی ڕیزە گرووپ کراوەکان:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "سەرجەم:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "بارکردنی تۆمارەکان" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "چاودێریکردنی تازەکردنەوەی سەرنەکەوتوو" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "بارکردنەوەى پەڕە" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "ڕیزە کارتێکراوەکان:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "نەتوانرا پەڕگەی ڕێکخستنەکان بخوێنرێتەوە، وادیارە کۆدەکانی JSON بە درووستی " "نەنووسراون." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1623,61 +1629,61 @@ msgstr "" msgid "Import" msgstr "هێنان" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "تکایە ئەو پەڕگەیە دەستنیشان بکە کە ئەتەوێت بکرێتەوە." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "هیچ پەڕگەیەک بوونی نییە لەسەر ڕاژەکار بۆ هێنان!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "لێکدانەوەی داواکاری" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "سیستەمی ئاگادارکەر" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "ئەنجامە جێبەجێکراوە شیاوەکان" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "ئەنجام" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "ڕاسپاردە" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "وردەکاریەکانی یاسا" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "گونجاندن" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "گۆڕاو / دەستەواژەی بەکارهاتوو" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "تاقیکرنەوە" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1688,73 +1694,73 @@ msgstr "" msgid "Cancel" msgstr "لابردن" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "گۆڕینی ڕێکخستنەکان" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "ئامادەکردن…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "داواکاریی پوچەڵ کرایەوە!!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "کردنەوەی داواکاری" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "داواکاریی سەرکەوتوو نەبوو!!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "هەڵە لە کردنەوەی داواکاری" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "هەڵەی کۆد: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "هەڵەی نوسین: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "ستونە سڕێنراوەکان" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "زۆرکردنی نرخی سەرەکیی" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1764,61 +1770,61 @@ msgstr "زۆرکردنی نرخی سەرەکیی" msgid "OK" msgstr "باشە" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "کرتە بکە بۆ لابردنی ئەم ئاگادارکردنەوە" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "ناونانەوەی بنکەی زانیاریەکان" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "لەبەرگرتنەوەی بنکەی دراو" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "گۆڕینی گورزەپیت" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "نەتوانرا ژمارەی ڕیزەکان بە درووستی بهێنرێت." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "گەڕان" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "پێشاندانی ئەنجامەکانی گەڕان" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "هێنان" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "سڕینەوە" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "پێناسەی فرمانی پاشەکەوتکراو پێویستە دەستەواژەی RETURN ی تێدابێت!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1835,44 +1841,44 @@ msgstr "پێناسەی فرمانی پاشەکەوتکراو پێویستە دە msgid "Export" msgstr "هەناردن" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "گۆڕەری ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "نرخەکانی ستونی %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "نرخ بۆ ستونی نوێ" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "هەر نرخێک لە خانەی جیا بنووسە." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "نرخ(کان)ی %d زیادبکە" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "تێبینی: ئەگەر فایلەکە چەند خشتەیەکی تێدابێت، ئەوا تێکەڵی یەک دەکرێن بۆ یەک " "دانە." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "شاردنەوەی سندوقی داواکاری" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "پێشاندانی سندوقی داواکاری" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1886,7 +1892,7 @@ msgstr "پێشاندانی سندوقی داواکاری" msgid "Edit" msgstr "چاکردن" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1898,409 +1904,410 @@ msgstr "چاکردن" msgid "Delete" msgstr "سڕینەوە" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variables" msgid "Variable %d:" msgstr "گۆڕاوەکان" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "هەڵبژێرە" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "خانە دەستنیشانکەر" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "گەڕان لە ئەم لیستە" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "بینینی زۆرتر" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "ئایا دڵنیایت؟" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "بەردەوامبوون" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "زۆرکردنی نرخی سەرەکیی" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "نرخی سەرەکیی زۆر کرا." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "هەنگاوی داهاتووت…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "کۆتایی هەنگاو" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "تەواو" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "هەنگاو" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "سڕینەوەی خانەکانی %s لە خشتەی %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "خشتەکانی خوارەوە درووست بکە" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "هیچ بنکەیەکی زانیاری هەڵنەبژێراوە." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "پاشەکەوتکردن" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "گەڕانی خشتە" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "ستون" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "ستون" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "شاردنەوەی پێوانەکانی گەڕان" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "پێشاندانی پێوانەکانی گەڕان" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "هەر خاڵێک ڕیزە زانیاریەک دەنوێنێ." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "خستنەسەری سەر خاڵێک پێناسەکەی پێشان دەدات." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "دوو ستون هەڵبژێرە" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "دوو ستونی جیا هەڵبژێرە" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "ناوەڕۆکی زانیاری خاڵ" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "فەرامۆشکردن" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "لەبەرگرتنەوە" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "خاڵ" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "فرە گۆشە" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "ئەندازەزانی" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "ئەڵقەی ناوەکی" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "ئەڵقەی دەرەکی:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "پاشەکەوتکردنی پەڕە" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save" msgid "Save page as" msgstr "پاشەکەوتکردن" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "کردنەوەی پەڕە" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "سڕینەوەی پەڕە" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "بێناو" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "تکایە پەڕەیەک هەڵبژێرە بۆ بەردەوامبوون" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "تکایە ناوێکی درووست بۆ پەڕە بنووسە" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "ئایا دەتەوێت گۆڕانکارییەکان پاشەکەوت بکەیت بۆ پەڕەی ئێستا؟" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "پەڕە بە سەرکەوتوویی سڕایەوە" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "دەستکاری کردن یان هەناردنی پەیوەندی نەخشە" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "گۆڕانکارییەکان پاشەکەوت کران" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "هەڵبژاردەیەک زۆر بکە بۆ خانەی \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d یەکە درووست کران." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "escape داگرە بۆ پاشگەزبوونەوە لە گۆڕین." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2308,191 +2315,191 @@ msgstr "" "تۆ چەند زانیاریەکت دەستکاری کردووە و پاشەکەوت نەکراون. تۆ دڵنیای لە دەرچوونت " "لەم پەڕە پێش پاشەکەوتکردنی زانیاریەکان؟" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "ڕایکێشە بۆ ڕیزکردنەوە." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "کرتە بکە بۆ ڕیزکردنی ئەنجام لەسەر بنەمای ئەم خانە." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "کرتە بکە بۆ نیشانکردن / لابردنی نیشانکردن." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "دوو کرتە بکە بۆ ڕوونووسکردنی ناوی ستون." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "هه‌مووی ببینه‌" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "واژلێهێنان" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "پووچەڵ کرایەوە" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "سەرکەوتووبوو" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "ئاستی هێنان" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "پەڕگەکانت لە ئێرە دابنێ" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "بنکەیەکی دراوە هەڵبژێرە لە پێشدا" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "بڕۆ بۆ بەستەر:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "ڕوونووسکردنی ناوی بەستەر." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "کرتەی ڕاست لەسەر ناوی ستون بکە بۆ لەبەرگرتنەوەی بۆ ناو کلیپ بۆرد." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "دروستکردنی تێپەڕە وشە" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "دروستکردن" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "زیاتر" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "هەمووی پێشاندە" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "پێشاندانی نیشاندەرەکان" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "خشتەکان" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "نیشاندان" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Processes" msgid "procedures" msgstr "پڕۆسەکان" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Events" msgid "events" msgstr "چالاکیەکان" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Function" msgid "functions" msgstr "فرمان" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2500,32 +2507,32 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "، دوایین وەشانی جێگیر:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "نوێترینە" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Send Error Report" msgid "Send error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2533,446 +2540,446 @@ msgstr "" "هەڵەیەکی گەورەی JavaScript هاتە پێش، دەتەوێت لە ڕوودانی ئەو هەڵەیە " "ئاگادارمان بکەیتەوە؟" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "گۆڕینی ڕێکخستنەکانی ڕاپۆرت" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "وردە زانیارییەکانی ڕاپۆرت" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "تکایە چاو لە بەشی خوارەوەی ئەم پەنجەرە بکە." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "لە بیرکردنی هەموو" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "ئایا دڵنیایت کە دەتەوێت ئەو Bookmark‌ ـە بسڕیتەوە؟" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تێبینیەکانی خشتە" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "پێشتر" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "دواتر" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "ئەمڕۆ" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "کانونی دووەم" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "شوبات" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "مارت" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "نیسان" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "مایس" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "حوزەیران" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "تەموز" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "ئاب" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "ئەیلول" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "تشرینی یەکەم" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "تشرینی دووەم" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "کانونی یەکەم" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "کانوونی دووەم" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "شوبات" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "مارت" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "نیسان" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "مایس" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "حوزیران" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "تەموز" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "ئاب" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "ئەیلول" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "تشرینی یەکەم" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "تشرینی دووەم" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "کانوونی یەکەم" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "یەک شەم" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "دوو شەم" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "سێ شەم" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "چوار شەم" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "پێنج شەم" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "هەینی" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "شەممە" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "یەک شەم" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "دوو شەم" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "سێ شەم" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "چوار شەم" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "پێنج شەم" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "هەینی" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "شەممە" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "یەک شەم" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "دوو شەم" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "سێ شەم" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "چوار شەم" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "پێنج شەم" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "هەینی" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "شەممە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "هەفتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "ڕۆژژمێر-مانگ-ساڵ" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "كاتژمێر" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "خولەک" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "چرکە" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3922,7 +3929,7 @@ msgstr "نیشاندەرەکان" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "کردار" @@ -3933,8 +3940,8 @@ msgid "Keyname" msgstr "کلیلەناو" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3966,9 +3973,9 @@ msgstr "ڕێکخستن" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "لێدوان" @@ -3983,14 +3990,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "فڕیدان" @@ -4100,7 +4107,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4753,23 +4760,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "ژمارە" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "بەروار و کات" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "ده‌قه‌ڕیزبه‌ند" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4927,7 +4940,7 @@ msgstr "ئەم نرخە هەڵبژێرە" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "خانە" @@ -5012,7 +5025,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7899,7 +7912,8 @@ msgid "No data to display" msgstr "هیچ زانیاریەک نەدۆزراوە" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7941,34 +7955,35 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "گۆڕین" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7979,20 +7994,20 @@ msgstr "گۆڕین" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -9397,7 +9412,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9853,32 +9868,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9898,6 +9913,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10106,7 +10122,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -10130,21 +10146,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10242,7 +10258,7 @@ msgid "Database:" msgstr "بنکەی دراو" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10343,7 +10359,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10413,7 +10429,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10486,24 +10502,24 @@ msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" msgid "AUTO_INCREMENT for table" msgstr "زۆرکردنی نرخی زۆربوونی خۆکارانە" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -14436,7 +14452,7 @@ msgid "Pick from Central Columns" msgstr "سڕینەوەی هێلکاری" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -14450,90 +14466,90 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Partial texts" msgid "Partition by:" msgstr "تێکستە لاوەکیەکان" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "نرخەکانی ستونی %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partial texts" msgid "Partitions:" msgstr "تێکستە لاوەکیەکان" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Partial texts" msgid "Subpartition by:" msgstr "تێکستە لاوەکیەکان" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Partial texts" msgid "Subpartitions:" msgstr "تێکستە لاوەکیەکان" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partial texts" msgid "Partition" msgstr "تێکستە لاوەکیەکان" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "نرخ" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Partial texts" msgid "Subpartition" msgstr "تێکستە لاوەکیەکان" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "بزوێنەرەکان" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "فەرهەنگی زانیاریەکان" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "ریزە هاوتاکان:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "Browse" msgid "Min rows" msgstr "گەڕۆک" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "گەڕانی خشتە" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -15313,32 +15329,51 @@ msgid "at beginning of table" msgstr "ژمارەی ڕیزەکان" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partial texts" msgid "Partitions" msgstr "تێکستە لاوەکیەکان" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "هیچ نیشاندەرێک پێناسە نەکراوە‌!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Linestring" msgid "Data length" msgstr "ڕیزبه‌ندی هێڵی" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Indexes" msgid "Index length" msgstr "نیشاندەرەکان" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partial texts" +msgid "Partition table" +msgstr "تێکستە لاوەکیەکان" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Edit Index" +msgid "Edit partitioning" +msgstr "چاکردنی نیشاندەر" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/cs.po b/po/cs.po index 8db26b47ea..b943fa72c8 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-03 10:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "Opravdu chcete změnit řazení ve všech sloupcích a převést data?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Uložit a zavřít" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Původní" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Obnovit vše" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Chybějící hodnota ve formuláři!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Vyberte alespoň jednu z možností!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Prosím zadejte platné číslo!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Prosím zadejte platnou délku!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Přidat klíč" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Upravit klíč" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Přidat %s polí do klíče" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Vytvořit klíč na jednom sloupci" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Vytvořit složený klíč" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Složit s:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Prosím zvolte které pole chcete přidat do klíče." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Musíte přidat alespoň jedno pole." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Náhled SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simulovat dotaz" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Odpovídající záznamy:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL dotaz:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Hodnoty Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Jméno počítače je prázdné!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Jméno uživatele je prázdné!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Heslo je prázdné!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Ukončit" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Šablona byla vytvořena." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Šablona načtena." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Šablona byla změněna." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Šablona byla smazána." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Ostatní" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Připojení / Procesů" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Vaše nastavení monitoru není kompatibilní!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1149,155 +1155,155 @@ msgstr "" "monitoru a pravděpodobně tedy nebude fungovat správně. Prosím obnovte " "výchozí nastavení v nabídce Nastavení." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Úspěšnost mezipaměti dotazů" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Využití mezipaměti dotazů" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Využito mezipaměti dotazů" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Využití CPU" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Operační paměť" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Odkládací oblast" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Průměrné zatížení" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Celková paměť" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Mezipaměť" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Vyrovnávací paměť" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Volná paměť" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Využitá paměť" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Swap celkem" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Cachovaný swap" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Využitý swap" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Volný swap" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Odesláno bajtů" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Přijato bajtů" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Připojení" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Procesy" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabulek" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Dotazy" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Provoz" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Nastavení" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Přidat graf do mřížky" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Prosím přidejte do série alespoň jednu hodnotu!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1309,47 +1315,47 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu!" msgid "None" msgstr "Žádná" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Obnovit monitor" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Přerušit monitor" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Zapnout automatické obnovování" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Vypnout automatické obnovování" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log a slow_query_log jsou povoleny." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log je povolen." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log je povolen." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log a general_log jsou zakázány." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output není nastaven na tabulku." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output je nastaven na tabulku." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1360,12 +1366,12 @@ msgstr "" "sekund. Doporučujeme nastavit proměnnou long_query_time na 0-2 sekund, v " "závislosti na zatížení vašeho systému." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time je nastaven na %d sekund." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1373,30 +1379,30 @@ msgstr "" "Budou provedeny následující změny, které budou platné do restartu serveru:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Nastavit log_output na %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Zapnout %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Vypnout %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Nastavit long_query_time na %d sekund." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1404,57 +1410,57 @@ msgstr "" "Nemůžete změnit uvedené proměnné. Prosím přihlaste se jako root nebo " "kontaktujte vašeho správce databáze." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Změnit nastavení" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Název grafu" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Rozdíly" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Vyděleno %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Jednotka" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Ze záznamu pomalých dotazů" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Z obecného záznamu dotazů" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "V záznamu server není pro tento dotaz známo jméno databáze." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Zkoumám záznamy" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Načítám a analyzuji záznamy. To může chvíli trvat." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Zrušit požadavek" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1464,7 +1470,7 @@ msgstr "" "dohromady. K seskupení byl však použit jen SQL dotaz, takže další vlastnosti " "dotazů, jako například čas jeho spuštění, se mohou lišit." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1473,35 +1479,35 @@ msgstr "" "Vzhledem k tomu, že bylo zvoleno seskupení dotazů INSERT, jsou tyto dotazy " "pro jednu tabulku sloučeny dohromady, bez ohledu na skutečně vkládaná data." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Záznamy byly načteny. V tomto časovém rozmezí byly spuštěny následující " "dotazy:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Přejít na tabulku se záznamem" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Nebyla nalezena žádná data" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Záznamy byly načteny, ale v tomto časovém rozmezí nebyly nalezeny žádné " "dotazy." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analyzuji…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Vysvětlení dotazu" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1509,7 +1515,7 @@ msgstr "Vysvětlení dotazu" msgid "Status" msgstr "Stav" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1519,58 +1525,58 @@ msgstr "Stav" msgid "Time" msgstr "Čas" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Celkový čas:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Výsledky profilování" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabulka" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Graf" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Nastavení filtrování záznamových tabulek" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtr" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtrovat dotazy podle slova nebo regulárního výrazu:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Sloučit dotazy ignorováním dat ve WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Součet sloučených řádků:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Celkem:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Nahrávám záznamy" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Obnovení monitoru selhalo" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1580,27 +1586,27 @@ msgstr "" "způsobeno vypršeným sezením. Problém můžete vyřešit novým načtením stránky a " "přihlášením." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Znovu načíst stránku" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Ovlivněné záznamy:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Selhalo načtení konfiguračního souboru. Pravděpodobně se nejedná o JSON." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Selhalo vytvoření grafu z importovaného nastavení. Používám výchozí " "nastavení…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1610,59 +1616,59 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Nahrát nastavení monitoru" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Prosím zvolte soubor, který chcete nahrát." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Na serveru nejsou žádné soubory!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analyzovat dotaz" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Poradce" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Možné výkonostní problémy" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problém" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Doporučení" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Podrobnosti o pravidle" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Zdůvodnění" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Použitá proměnná / vzorec" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Kontrola" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Formátuji SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1673,59 +1679,59 @@ msgstr "Formátuji SQL…" msgid "Cancel" msgstr "Zrušit" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Nastavení stránky" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Použít" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Nahrávám…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Požadavek byl přerušen!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Probíhá zpracování požadavku" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Požadavek se nezdařil!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Číslo chyby: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Popis chyby: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Nebyla vybrána žádná databáze." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Odstraňuji sloupec" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Přidávám primární klíč" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1735,55 +1741,55 @@ msgstr "Přidávám primární klíč" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Klikněte pro schování této zprávy" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Přejmenovávám databáze" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Kopíruji databázi" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Měním znakovou sadu" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Zapnout kontrolu cizích klíčů" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Chyba při čtení skutečného počtu řádek." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Vyhledávám" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Skrýt výsledky vyhledávání" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Zobrazit výsledky vyhledávání" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Procházím" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Odstraňuji" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1800,42 +1806,42 @@ msgstr "Definice uložené funkce musí obsahovat příkaz RETURN!" msgid "Export" msgstr "Export" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Upravit ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Hodnoty pro sloupec %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Hodnoty pro nový sloupec" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Zadejte každou hodnotu do samostatného pole." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Přidat %d hodnot" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Poznámka: Pokud soubor obsahuje více tabulek, budou sloučeny do jedné." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Skrýt pole pro dotaz" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1849,7 +1855,7 @@ msgstr "Zobrazit pole pro dotaz" msgid "Edit" msgstr "Upravit" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1861,41 +1867,41 @@ msgstr "Upravit" msgid "Delete" msgstr "Odstranit" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d není platné číslo řádku." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Není automaticky ukládaný dotaz" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Proměnná %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Zvolit" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Vybrat sloupec" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Vyhledávání v tomto seznamu" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1904,15 +1910,15 @@ msgstr "" "Žádné sloupce v centrálním seznamu. Ujistěte se, že centrální sloupcový " "seznam pro databázi %s má sloupce, které se nenacházejí v aktuální tabulce." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Zobrazit více" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Jste si jistý?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1920,51 +1926,51 @@ msgstr "" "Tato akce může změnit některé definice sloupců.
Jste si jisti, že chcete " "pokračovat?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Pokračovat" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Přidat primární klíč" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Byl přidán primární klíč." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Přesměrovávám na další krok…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "První krok normalizace pro tabulku '%s' je hotový." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Konec kroku" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Druhý krok normalizace (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Hotovo" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Potvrzení částečných závislostí" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Byly zvoleny následující částečné závislosti:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1972,19 +1978,19 @@ msgstr "" "Poznámka: a,b -> d,f zahrnuje hodnoty sloupců a a b kombinaci dohromady může " "určit hodnoty sloupce d a sloupce f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Nebyly vybrány žádné částečné závislosti!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Ukaž mi možné částečné závislosti založené na datech v tabulce" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Skrýt seznam částečných závislostí" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1992,164 +1998,165 @@ msgstr "" "Vydržte! Může to trvat i několik sekund v závislosti na velikosti dat a " "počtu sloupců v tabulce." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Krok" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Budou provedeny následující úpravy:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "ODSTRANIT sloupce %s z tabulky %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Vytvořit následující tabulku" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Třetí krok normalizace (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Potvrzení tranzitivních závislostí" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Byly zvoleny následující závislosti:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Nebyly vybrány žádné závislosti!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Uložit" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Skrýt parametry vyhledávání" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Vyhledávání rozsahu" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Největší hodnota sloupce:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Nejmenší hodnota sloupce:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Nejmenší hodnota:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Největší hodnota:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Skrýt parametry vyhledávání a nahrazování" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Zobrazit parametry vyhledávání a nahrazování" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Každý bod reprezentuje řádek dat." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Najetí myší nad bod ukáže jeho název." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pro přiblížení označte oblast grafu myší." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Klikněte na tlačítko pro návrat do původního stavu." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Klikněte na datový bod pro zobrazení a případnou úpravu řádky." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Graf můžete zvětšit táhnutím za pravý dolní roh." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Zvolte dva sloupce" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Zvolte dva odlišné sloupce" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Obsah datového bodu" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopírovat" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Bod" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Linka" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Mnohoúhelník" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometrie" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Vnitřní obrys" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Vnější obrys" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Přejete si zkopírovat šifrovací klíč?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Šifrovací klíč" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2157,24 +2164,24 @@ msgstr "" "Indikuje, že jste provedli změny na této stránce; budete vyzváni k potvrzení " "před opuštěním změn" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Prosím zvolte primární nebo unikátní klíč!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2182,91 +2189,91 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Jméno stránky" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Uložit stránku" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Uložit stránku jako" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Otevřít stránku" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Odstranit stránku" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Beze jména" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Prosím vyberte stránku pro pokračování" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Prosím zadejte platný název stránky" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Přejete si uložit změny na aktuální stránce?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Stránka byla odstraněna" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Exportovat relační schéma" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Změny byly uloženy" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Přidat paramer pro sloupec „%s“." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "Bylo vytvořeno %d objektů." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Provést" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Klávesou Esc ukončíte editaci." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "Na stránce jsou neuložené změny. Opravdu si ji přejete opustit?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Uspořádejte přetažením." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Klikněte pro seřazení výsledků podle tohoto sloupce." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2276,26 +2283,26 @@ msgstr "" "
- Control+Kliknutí nebo Alt+Kliknutí(MAC: Shift+Option+Kliknutí) " "sloupec odstraní z ORDER BY podmínky" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Klikněte pro označení." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Poklepejte pro zkopírování jména pole." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klikněte na šipku
pro vybrání sloupců." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Zobrazit vše" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2304,12 +2311,12 @@ msgstr "" "editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání " "fungovat." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Prosím zadejte platný šestnáctkový řetězec. Můžete použít znaky 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2317,126 +2324,126 @@ msgstr "" "Opravdu si přejete zobrazit všechny řádky? U velké tabulky by mohlo dojít ke " "spadnutí prohlížeče." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Původní délka" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "zrušit" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Přerušené" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Úspěch" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Přetáhněte sem soubory" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Nejdříve zvolte databázi" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Většinu polí můžete přímo upravit
dvojklikem na jejich obsah." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "Většinu polí můžete přímo upravit
kliknutím na jejich obsah." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Přejít na odkaz:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Zkopírovat název pole." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klikněte pravým tlačítkem myši pro zkopírování názvu pole do schránky." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Více" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Zobrazit panel" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Skrýt panel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Zobrazit skryté položky navigačního panelu." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Spojit s hlavním panelem" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Odpojit od hlavního panelu" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Pro filtrování všemi databázemi na serveru zmáčkněte Enter po zadání " "hledaného názvu" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Pro filtrování všech %s v databázi zmáčkněte Enter po zadání hledaného názvu" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "tabulky" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "pohledy" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "procedury" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "události" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funkce" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Požadovaná stránka nebyla nalezena v historii, možná jí již vypršela " "platnost." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2446,49 +2453,49 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "aktuální" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Vytvořit pohled" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Došlo k chybě při běhu Javascriptu. Přejete si odeslat chybové hlášení?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Změnit nastavení hlášení" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Zobrazit podrobnosti hlášení" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Váš export není kompletní kvůli omezené době běhu PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2497,58 +2504,58 @@ msgstr "" "Varování: Formulář na této stránce má více než %d polí. Při jeho odeslání " "mohou být kvůli nastavení PHP max_input_vars některá z nich ignorována." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Na serveru došlo byly zjištěny chyby!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Prosím podívejte se na spodní část okna." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignorovat vše" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Podle vašeho nastavení jsou právě odesílány, prosím buďte trpěliví." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Spustit tento dotaz znovu?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Opravdu si přejete odstranit tuto záložku?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "Při získávání ladících informací došlo k neznámé chybě." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s dotazů bylo provedno %s krát během %s sekund." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "Zadáno %s argumentů" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Zobrazit argumenty" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Skrýt argumenty" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Doba běhu:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2558,331 +2565,331 @@ msgstr "" "maximálního limitu, některé funkce tudíž nemusí fungovat správně. V Safari " "je tento problém běžně zapříčiněn v režimu \"Soukromého prohlížení\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Předchozí" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Následující" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Dnešek" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "leden" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "únor" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "březen" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "duben" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "květen" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "červen" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "červenec" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "srpen" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "září" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "říjen" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "listopad" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "pro" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Pátek" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Týd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minuty" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekundy" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Prosím opravte hodnotu v tomto poli" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Prosím zadejte platný e-mail" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Prosím zadejte platnou adresu URL" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Prosím zadejte platné datum" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadejte platné datum dle ISO8601" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Prosím zadejte platné číslo" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Prosím zadejte platné číslo platební karty" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Prosím zadávejte pouze číslice" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Prosím zadejte stejnou hodnotu znovu" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Prosím nezadávejte více než {0} znaků" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Prosím zadejte více než {0} znaků" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosím vložte hodnotu delší než {0} znaků a kratší než {1} znaků" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadejte hodnotu mezi {0} a {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadejte číslo menší nebo rovno {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadejte číslo větší nebo rovno {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Prosím zadejte platné datum nebo čas" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Prosím zadejte platné hexadecimalní číslo" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3749,7 +3756,7 @@ msgstr "Klíče" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Operace" @@ -3760,8 +3767,8 @@ msgid "Keyname" msgstr "Název klíče" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3793,9 +3800,9 @@ msgstr "Porovnávání" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Komentář" @@ -3810,14 +3817,14 @@ msgstr "Klíč %s byl odstraněn." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Odstranit" @@ -3929,7 +3936,7 @@ msgstr "Sledování" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4605,23 +4612,29 @@ msgstr "Množina mnohoúhelníků" msgid "A collection of geometry objects of any type" msgstr "Množina libovolných geometrických útvarů" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Čísla" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Datum a čas" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Řetězce" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Prostorové" @@ -4775,7 +4788,7 @@ msgstr "Použít tuto hodnotu" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Řádků" @@ -4858,7 +4871,7 @@ msgstr "NE" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Název" @@ -7920,7 +7933,8 @@ msgid "No data to display" msgstr "Nebyla nalezena žádná data" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7955,32 +7969,33 @@ msgstr[0] "Název \"%s\" je rezervovaným klíčovým slovem MySQL." msgstr[1] "Názvy \"%s\" jsou rezervovaným klíčovým slovem MySQL." msgstr[2] "Názvy \"%s\" jsou rezervovaným klíčovým slovem MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Nebyl vybrán žádný sloupec." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Vybraná pole byla úspěšně přesunuta." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Chyba dotazu" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Tabulka %1$s byla úspěšně změněna. Práva byla upravena." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Chyba dotazu" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Změnit" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7991,20 +8006,20 @@ msgstr "Změnit" msgid "Index" msgstr "Klíč" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Prostorový" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Odlišné hodnoty" @@ -9412,7 +9427,7 @@ msgstr "Nová" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Pohledy" @@ -9882,32 +9897,32 @@ msgid "Delete the table (DROP)" msgstr "Odstranit tabulku (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analyzovat" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Zkontrolovat" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimalizovat" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Přestavět" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Opravit" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9927,6 +9942,7 @@ msgid "Partition %s" msgstr "Oddíl %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Zrušit dělení" @@ -10139,7 +10155,7 @@ msgstr "Nastavení výpisu dat" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Vypisuji data pro tabulku" @@ -10163,21 +10179,21 @@ msgstr "Definice" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Struktura tabulky" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struktura pro pohled" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Zástupná struktura pro pohled" @@ -10267,7 +10283,7 @@ msgid "Database:" msgstr "Databáze:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Data:" @@ -10368,7 +10384,7 @@ msgid "Data creation options" msgstr "Možnosti vytváření dat" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Vyprázdnit tabulku před vkládáním" @@ -10452,7 +10468,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10517,24 +10533,24 @@ msgstr "AUTO_INCREMENT pro tabulky" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabulku" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPY PRO TABULKU" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELACE PRO TABULKU" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktura pro pohled %s exportovaná jako tabulka" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Chyba při čtení dat:" @@ -14663,7 +14679,7 @@ msgid "Pick from Central Columns" msgstr "Odstranit pole" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -14679,92 +14695,92 @@ msgstr "první" msgid "after %s" msgstr "po %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "používá oddíly" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Hodnoty pro sloupec %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partitions" msgid "Partitions:" msgstr "Oddíly" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "používá oddíly" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "používá oddíly" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partitions" msgid "Partition" msgstr "Oddíly" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Hodnota" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "používá oddíly" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Úložiště" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Domovský adresář pro data" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Adresář pro ukládání" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Odpovídající záznamy:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "řádcích" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Vyhledávání v tabulce" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -15506,30 +15522,49 @@ msgid "at beginning of table" msgstr "na začátku tabulky" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Oddíly" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Není definován žádný klíč!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "používá oddíly" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "používá oddíly" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Délka řádku" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Délka klíče" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "používá oddíly" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Zrušit dělení" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Upravit pohled" diff --git a/po/cy.po b/po/cy.po index 84c33f14a6..f5568d8439 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-11-14 19:10+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Cadw fel ffeil" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Ailosod" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Dewis Pob" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Gwerth ar goll yn y ffurflen!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "o leiaf un o'r geiriau" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indecs" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Golygu'r rhes nesaf" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s column(s)" msgid "Add %s column(s) to index" msgstr "Ychwanegwch %s colofn" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Crëwch berthynas" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Crëwch berthynas" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Columns enclosed by" msgid "Composite with:" msgstr "Amgaewyd colofnau gan" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s column(s)" msgid "Please select column(s) for the index." msgstr "Ychwanegwch %s colofn" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Rydych chi wedi ychwanegu o leiaf un golofn." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "mewn ymholiad" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Tudalennau" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "Ymholiad SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Gwerth" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Mae enw'r gwesteiwr yn wag!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Mae enw'r defnyddiwr yn wag!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Mae'r cyfrinair yn wag!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Cau" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "Template was created." msgstr "%s tabl" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Cafodd y rhes ei dileu" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Failed to write file to disk." msgid "Local monitor configuration incompatible!" msgstr "Methu ag ysgrifennu i'r ddisg." -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1245,140 +1251,140 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy #| msgid "SQL query history table" msgid "Query cache efficiency" msgstr "Tabl hanes ymholiadau SQL" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy #| msgid "Query results" msgid "Query cache usage" msgstr "Gweithrediadau canlyniadau ymholiad" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy #| msgid "Query results" msgid "Query cache used" msgstr "Gweithrediadau canlyniadau ymholiad" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Cyfrif ffeiliau log" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Pwll Byffer" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Cyfanswm" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Tudalennau rhydd" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Prosesau" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1386,36 +1392,36 @@ msgid "%d table(s)" msgstr "%s tabl" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy #| msgid "Versions" msgid "Questions" msgstr "Fersiynau" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:186 +#: js/messages.php:187 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Snap i'r grid" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1427,47 +1433,47 @@ msgstr "" msgid "None" msgstr "Dim" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1475,26 +1481,26 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Cadw fel ffeil" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgctxt "BLOB repository" #| msgid "Enabled" @@ -1502,134 +1508,134 @@ msgid "Enable %s" msgstr "Galluogwyd" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Analluogwch" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Teitl yr adroddiad" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 #, fuzzy #| msgid "Difference" msgid "Differential" msgstr "Gwahaniaeth" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "llwytho" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Ceisiadau darllen" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy #| msgid "Jump to database" msgid "Jump to Log table" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Dim cronfeydd data" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Dadansoddi" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Esbonio SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1637,7 +1643,7 @@ msgstr "Esbonio SQL" msgid "Status" msgstr "Statws" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1647,100 +1653,100 @@ msgstr "Statws" msgid "Time" msgstr "Amser" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Cyfanswm" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Proffilio" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabl" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Set nodau" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Databases statistics" msgid "Log table filter options" msgstr "Ystadegau cronfeydd data" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Hidlydd" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of columns" msgid "Sum of grouped rows:" msgstr "Nifer y colofnau" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Cyfanswm" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "llwytho" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Ail-lwytho" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1750,69 +1756,69 @@ msgstr "" msgid "Import" msgstr "Mewnforio" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Failed to write file to disk." msgid "Import monitor configuration" msgstr "Methu ag ysgrifennu i'r ddisg." -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ymholiad Diweddaru" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dogfennaeth" -#: js/messages.php:283 +#: js/messages.php:284 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Manylion…" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Authenticating…" msgid "Justification" msgstr "Yn dilysu…" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1823,73 +1829,73 @@ msgstr "" msgid "Cancel" msgstr "Diddymu" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy #| msgid "Load" msgid "Loading…" msgstr "llwytho" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Prosesau" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query" msgid "Request failed!!" msgstr "Ymholiad" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesau" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Gweithdrefnau" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s column(s)" msgid "Adding primary key" msgstr "Ychwanegwch %s colofn" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1899,75 +1905,75 @@ msgstr "Ychwanegwch %s colofn" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Ailenwch y gronfa ddata i" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Copïwch y gronfa ddata i" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Set nodau" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Select Foreign Key" msgid "Enable foreign key checks" msgstr "Dewis Allwedd Estron" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Methu â nôl penawdau" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Chwilio" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "mewn ymholiad" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy #| msgid "Show insert query" msgid "Show search results" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Porwch" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Dileu" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1984,48 +1990,48 @@ msgstr "" msgid "Export" msgstr "Allforio" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of columns" msgid "Values for column %s" msgstr "Nifer y colofnau" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "Ychwanegwch weinydd newydd" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "mewn ymholiad" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy #| msgid "Show insert query" msgid "Show query box" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -2039,7 +2045,7 @@ msgstr "Dangos ymholiad mewnosod" msgid "Edit" msgstr "Golygu" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2051,94 +2057,94 @@ msgstr "Golygu" msgid "Delete" msgstr "Dileu" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "Dydy %d ddim yn rhif rhes dilys." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Newidyn" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Chwilio yn y gronfa ddata" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Routines" msgid "Continue" msgstr "Rheolweithiau" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "The primary key has been dropped." msgid "Primary key added." msgstr "Cafodd yr allwedd gynradd ei gollwng." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Adroddiad tracio" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2146,559 +2152,560 @@ msgstr "" msgid "End of step" msgstr "Diwedd y llinell" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Gorffen" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Creu tabl mewn cronfa ddata %s" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Dim cronfeydd data wedi'u dewis." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Cadw" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "mewn ymholiad" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy #| msgid "Show insert query" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Chwilio" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Columns" msgid "Column maximum:" msgstr "Colofnau" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Columns" msgid "Column minimum:" msgstr "Colofnau" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "mewn ymholiad" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show insert query" msgid "Show find and replace criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Ychwanegu/Dileu colofnau" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data definition statement" msgid "Data point content" msgstr "Datganiad diffiniad data" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Add a new server" msgid "Inner ring" msgstr "Ychwanegwch weinydd newydd" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Terfynwyd llinellau gan" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Enw'r dudalen" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Dewis Tablau" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Dewis Tablau" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Tudalennau rhydd" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Dewis Tablau" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please select a database" msgid "Please select a page to continue" msgstr "Dewiswch gronfa ddata" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Golygu neu allforio sgema perthynol" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Number of columns" msgid "Add an option for column \"%s\"." msgstr "Nifer y colofnau" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Gyrru" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Columns" msgid "Double-click to copy column name." msgstr "Colofnau" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Dangos pob" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Safle gwreiddiol" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Diddymu" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Mewnforiwch ffeiliau" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Trothwy'r ffeil log" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Dewis Tablau" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Count tables" msgid "Go to link:" msgstr "Cyfrifwch y tablau" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Columns" msgid "Copy column name." msgstr "Colofnau" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generadu" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dangos pob" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indecsau" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Dangos grid" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tablau" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Dangos" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Gweithdrefnau" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "Digwyddiad" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Swyddogaethau" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2706,141 +2713,141 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Teitl yr adroddiad" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Anwybyddu" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Dangoswch yr ymholiad hwn yma eto" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "A ydych chi wir am" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Gweithredu ymholiad a glustnodwyd" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Sylwadau tabl" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "mewn ymholiad" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Cynt" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2848,149 +2855,149 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Heddiw" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Ionawr" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Chwefror" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Mawrth" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Ebrill" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mai" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Mehefin" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Awst" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Medi" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Hydref" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Tachwedd" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Rhag" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2998,205 +3005,205 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Wy" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Dim" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Awr" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Munud" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Eiliad" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Defnyddiwch faes testun" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4178,7 +4185,7 @@ msgstr "Indecsau" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Gweithred" @@ -4189,8 +4196,8 @@ msgid "Keyname" msgstr "Enw allweddol" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4222,9 +4229,9 @@ msgstr "Coladiad" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Sylw" @@ -4239,14 +4246,14 @@ msgstr "Cafodd indecs %s ei ollwng." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Gollwng" @@ -4358,7 +4365,7 @@ msgstr "Tracio" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -5028,19 +5035,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Crëwch dudalen" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5048,7 +5061,7 @@ msgctxt "string types" msgid "String" msgstr "Terfynwyd llinellau gan" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Log file count" msgctxt "spatial types" @@ -5219,7 +5232,7 @@ msgstr "Defnyddiwch y gwerth hwn" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rhesi" @@ -5306,7 +5319,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Enw" @@ -8380,7 +8393,8 @@ msgid "No data to display" msgstr "Dim cronfeydd data" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8426,39 +8440,40 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No databases selected." msgid "No column selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "Cafodd cronfa ddata %s ei gollwng." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "View %s has been dropped." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Cafodd golwg %s ei ollwng" - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "Ymholiad" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "View %s has been dropped." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Cafodd golwg %s ei ollwng" + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Newid" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8469,20 +8484,20 @@ msgstr "Newid" msgid "Index" msgstr "Indecs" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Testunllawn" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -9959,7 +9974,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10427,32 +10442,32 @@ msgid "Delete the table (DROP)" msgstr "Copïwch y gronfa ddata i" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Dadansoddi" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Gwirio" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimeiddio" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Ailadeiladu" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Trwsio" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10472,6 +10487,7 @@ msgid "Partition %s" msgstr "Ymraniad %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Tynnu'r ymraniadu" @@ -10708,7 +10724,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Dadlwytho data ar gyfer y tabl" @@ -10734,21 +10750,21 @@ msgstr "Disgrifiad" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Strwythur y tabl ar gyfer y tabl" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10860,7 +10876,7 @@ msgid "Database:" msgstr "Cronfa ddata" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10975,7 +10991,7 @@ msgid "Data creation options" msgstr "Ystadegau cronfeydd data" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11045,7 +11061,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11127,24 +11143,24 @@ msgstr "Ychwanegwch werth AUTO_INCREMENT" msgid "AUTO_INCREMENT for table" msgstr "Ychwanegwch werth AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -15268,7 +15284,7 @@ msgid "Pick from Central Columns" msgstr "Tynnwch y gronfa ddata" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15284,92 +15300,92 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Partition %s" msgid "Partition by:" msgstr "Ymraniad %s" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of columns" msgid "Expression or column list" msgstr "Nifer y colofnau" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Ymraniad %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Partition %s" msgid "Subpartition by:" msgstr "Ymraniad %s" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Partition %s" msgid "Subpartitions:" msgstr "Ymraniad %s" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Ymraniad %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Gwerth" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Partition %s" msgid "Subpartition" msgstr "Ymraniad %s" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Peiriannau" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Cyfeiriadur hafan data" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Upload directory" msgid "Index directory" msgstr "Cyfeiriadur lanlwytho" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Latched pages" msgid "Max rows" msgstr "Tudalennau" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Pori" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Chwilio" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16218,7 +16234,7 @@ msgid "at beginning of table" msgstr "Dangos dimensiynau'r tabl" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16226,26 +16242,45 @@ msgstr "Ymraniad %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Dim indecs wedi'i ddiffinio!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "Partition %s" msgid "Partitioned by:" msgstr "Ymraniad %s" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Data files" msgid "Data length" msgstr "Ffeiliau data" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Indexes" msgid "Index length" msgstr "Indecsau" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition %s" +msgid "Partition table" +msgstr "Ymraniad %s" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Tynnu'r ymraniadu" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/da.po b/po/da.po index 0a4eaef1be..784bfd89c1 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-16 14:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Danish " -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1000,161 +1006,161 @@ msgstr "" "Er du sikker på du ønsker at ændre sorteringsrækkefølgen og konvertere " "dataene?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Gem & luk" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Nulstil" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Nulstil alle" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Ingen værdi i formularen!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Vælg mindst én!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Angiv venligst et gyldigt nummer!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Angiv venligst en gyldig længde!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Tilføj indeks" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Redigér indeks" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Tilføj %s kolonne(r) til indeks" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Opret indeks med en enkelt kolonne" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Opret sammensat indeks" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Sammensat af:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Tilføj venligst kolonne(r) til indekset." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Du skal tilføje mindst en kolonne." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Forhåndsvis SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simulér forespørgsel" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Rækker som matcher:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL-forespørgsel:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Y-værdier" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Der er intet værtsnavn!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Intet brugernavn!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Adgangskoden er tom!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Fjerner valgte brugere" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Luk" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Skabelon oprettet." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Skabelon hentet." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Skabelon blev opdateret." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Skabelon blev slettet." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Andet" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Forbindelser / Opgaver" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Konfigurationen for den lokale skærm er inkompatibel!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1166,155 +1172,155 @@ msgstr "" "sandsynligt, at din aktuelle konfiguration ikke vil virke længere. Nulstil " "derfor din konfiguration i menuen Settings." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Effektivitet af forespørgsels-mellemlager" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Forbrug af forespørgsels-mellemlager" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Forbrugt forespørgsels-mellemlager" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "System CPU forbrug" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Systemhukommelse" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "System-swap" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Gennemsnitlig belastning" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Total hukommelse" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Hukommelse i mellemlager" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Hukommelse i buffer" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Ledig hukommelse" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Forbrugt hukommelse" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Totalt sidelager" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Sidelager i mellemlager" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Forbrugt sidelager" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Ledigt sidelager" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes sendt" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bytes modtaget" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Forbindelser" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Processer" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabel(ler)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Spørgsmål" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Trafik" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Indstillinger" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Snap diagram til gitter" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Tilføj mindst en variabel til serien!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1326,47 +1332,47 @@ msgstr "Tilføj mindst en variabel til serien!" msgid "None" msgstr "Ingen" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Genstart monitor" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Sæt monitor på pause" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Start auto-genopfrisk" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Stop auto-genopfrisk" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log og slow_query_log er aktiveret." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log er aktiveret." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log er aktiveret." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log og general_log er deaktiveret." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output er ikke sat til TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output er sat til TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1377,12 +1383,12 @@ msgstr "" "varer længere end %d sekunder. Det tilrådes at sætte denne long_query_time " "til 0-2 sekunder, afhængig af dit system." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time er sat til %d sekund(er)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1391,30 +1397,30 @@ msgstr "" "standard ved genstart af server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Sæt log_output til %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Aktivér %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Deaktiver %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Sæt long_query_time til %d sekunder." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1422,57 +1428,57 @@ msgstr "" "Du har ikke superbrugerrettigheder til at ændre disse variable. Log venligst " "ind som root eller kontakt din database administrator." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Ændre indstillinger" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Diagramtitel" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Differentiel" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Divideret med %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Enhed" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Fra slow log" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Fra generel log" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "Databasenavnet er ukendt for denne forespørgsel i serverens logge." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analyserer logge" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer & indlæser logs. Dette kan vare nogen tid." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Annullér forespørgsel" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1482,7 +1488,7 @@ msgstr "" "sammen. Dog kun SQL tekst sammenlignes, så de andre attributter af " "forespørgsler som starttid kan være forskellige." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1492,31 +1498,31 @@ msgstr "" "forespørgsler ind i den samme tabel også grupperet sammen unden hensyn til " "indsatte data." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Logdata er indlæst. Forespørgsler udført i dette tidsinterval:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Gå til logtabellen" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Fandt ingen data" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "Loggen er analyseret, men ingen data fundet i dette tidsinterval." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analyserer…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Forklar output" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1524,7 +1530,7 @@ msgstr "Forklar output" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1534,58 +1540,58 @@ msgstr "Status" msgid "Time" msgstr "Tid" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Samlet tid:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Resultat af profilering" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Diagram" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Indstillinger for filtre på logtabel" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtrér" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtrer forespørgsler efter ord/regex:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grupper forespørgsler, og ignorer variabeldata i WHERE klausuler" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Sum af grupperede rækker:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Indlæser logs" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Skærmopfriskning fejlede" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1596,28 +1602,28 @@ msgstr "" "Genindlæsning af siden og genindtastning af dine legitimationsoplysninger " "burde hjælpe." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Genindlæs side" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Berørte rækker:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Kunne ikke fortolke konfigurationsfilen. Det ser ikke ud til at være gyldig " "JSON-kode." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kunne ikke bygge diagramgitter med den importerede konfiguration. Nulstiller " "til standard konfiguration…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1627,59 +1633,59 @@ msgstr "" msgid "Import" msgstr "Importér" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importér overvågningskonfiguration" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Vælg venligst filen du vil importere." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Der er ingen filer tilgængelige på serveren til import!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analyser forespørgsel" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Rådgivningssystem" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Mulige ydelsesmæssige problemer" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problem" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Anbefaling" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Regeldetaljer" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Begrundelse" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Brugt variabel/formel" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Formatterer SQL …" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1690,59 +1696,59 @@ msgstr "Formatterer SQL …" msgid "Cancel" msgstr "Annuller" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Siderelaterede indstillinger" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Anvend" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Indlæser…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Forespørgsel afbrudt!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Udfører forespørgsel" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Forespørgsel mislykkedes!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Fejl i udførsel af forespørgsel" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Fejlkode: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Fejltekst: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Ingen databaser valgt." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Sletter kolonne" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Tilføj primær nøgle" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1752,57 +1758,57 @@ msgstr "Tilføj primær nøgle" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Klik for at forkaste denne notifikation" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Omdøber databaser" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Kopierer database til" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Ændrer tegnsæt" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Slå fremmednøgle-checks til" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Kunne få reelt rækkeantal." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Søger" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Slet søgeresultater" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Vis søgeresultater" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Viser" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Sletter" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ifølge definitionen på en stored function, skal denne indeholde et RETURN-" "udtryk!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1819,43 +1825,43 @@ msgstr "" msgid "Export" msgstr "Eksportér" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET-redigeringsværktøj" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Værdier for kolonnen %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Værdier for en ny kolonne" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Indtast hver værdi i et separat felt." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Tilføj %d værdi(er)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Note: Hvis filen indeholder flere tabeller, vil de blive kombineret til én." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Skjul forespørgeselsboks" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Vis forespørgselsbox" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1869,7 +1875,7 @@ msgstr "Vis forespørgselsbox" msgid "Edit" msgstr "Ret" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1881,41 +1887,41 @@ msgstr "Ret" msgid "Delete" msgstr "Slet" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldigt rækkenummer." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Ingen automatisk gemt forespørgsel" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variabel %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Vælg" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Kolonnevælger" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Søg i denne liste" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1924,15 +1930,15 @@ msgstr "" "Ingen kolonner i centerlisten. Vær sikker på at centerlisten for databasen " "%s har kolonner der ikke er i aktuel tabel." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Se mere" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Er du sikker?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1940,51 +1946,51 @@ msgstr "" "Denne handling kan ændre nogle af kolonnedefinitionerne.
Er du sikker " "på at du vil fortsætte?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Fortsæt" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Tilføj primær nøgle" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Primær nøgle er blevet tilføjet." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Tager dig til næste trin…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Det første trin af normaliseringen er fuldført for tabellen '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Slut på trinnet" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Andet trin af normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Færdig" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Bekræft delvise afhængigheder" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "De valgte, delvise afhænigheder er som følger:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1992,19 +1998,19 @@ msgstr "" "Bemærk: a, b -> d,f implicerer, at værdier med kolonnerne a og b kombineret " "sammen kan afgøre værdier for kolonne d og kolonne f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Der blev ikke valgt delvise afhængigheder!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Vis mig de mulige, delvise afhængigheder baseret på data i tabellen" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Skjul listen med delvise afhængigheder" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2012,167 +2018,168 @@ msgstr "" "Hold vejret! Der kan gå nogle sekunder afhængig af datastørrelsen og " "antallet af kolonner i tabellen." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Trin" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "De følgende handlinger vil blive udført:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolonnerne %s fra tabellen %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Opret følgende tabel" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Tredje trin af normaliseringen (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Bekræft transitive afhængigheder" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "De valgte afhængigheder er:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Der er ikke valgt afhængigheder!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gem" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Skjul søgekriterie" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Vis søgekriterie" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Intervalsøgning" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Kolonnemaksimum:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Kolonneminimum:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Minimumsværdi:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Maksimumsværdi:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Skjul kriteriet for søg og erstat" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Vis kriteriet for søg og erstat" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Hvert punkt repræsenterer en datarække." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Når der holdes over et punkt vises dets etiket." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "For at forstørre, vælg en sektion af plottet med musen." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Klik på knap til nulstilling af zoom for at vende tilbage til den " "oprindelige tilstand." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Klik et datapunkt for at se og muligvis redigere datarækken." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Plottet kan ændres i størrelse ved at trække det i nederste højre hjørne." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Vælg to kolonner" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Vælg to forskellige kolonner" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Datapunkt-indhold" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopi" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punkt" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Ydre ring" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøgle?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Krypteringsnøgle" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2180,24 +2187,24 @@ msgstr "" "Indikerer at du har lavet ændringer ved denne side, du vil blive spurgt om " "godkendelse før ændringerne frafalder" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Vælg venligst den primære nøgle eller en unik nøgle!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Vælg kolonne til visning" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2205,77 +2212,77 @@ msgstr "" "Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke " "gemmer dem. Vil du fortsætte?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Sidenavn" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Gem side" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Gem side som" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åbn side" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Slet side" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unavngivet" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Vælg venligst en side for at fortsætte" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Angiv venligst et gyldigt sidenavn" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Ønsker du at gemme ændringerne til nuværende side?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Sletning af siden er gennemført" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Eksportér relationsskema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Rettelserne er gemt" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tilføj mulighed for kolonnen \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) oprettet." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Send" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Tryk på ESC for at annullere redigeringen." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2283,15 +2290,15 @@ msgstr "" "Du har redigeret nogle data og de er ikke blevet gemt. Er du sikker på, at " "du vil forlade siden uden at gemme data ?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Træk for at ændre rækkefølge." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Klik for at sortere resultater efter denne kolonne." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2301,26 +2308,26 @@ msgstr "" "mellem tiltagende og aftagende, ASC/DESC.
- Ctrl+klik eller Alt+Click " "(Mac: Shift+Option+Klik) for at fjerne kolonne fra klausulen ORDER BY" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Klik for at markere/afmarkere." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Dobbeltklik for at kopiere kolonnenavn." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik på pilen for valgboks
for at skifte kolonnens synlighed." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2329,11 +2336,11 @@ msgstr "" "redigering af gitter, afkrydsningsboks og links til redigering, kopiering og " "sletning fungerer måske ikke, efter at data er gemt." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Indtast venligst en gyldig heximal streng. Gyldige tegn er 0-9 og A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2341,126 +2348,126 @@ msgstr "" "Sikker på du vil se alle rækkerne? For store tabeller kan dette få browseren " "til at gå ned." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Oprindelige længde" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "annullér" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Afbrudt" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Gennemført" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Drop filerne her" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Vælg først en database" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Du kan også redigere de fleste værdier
ved at dobbelt-klikke direkte på " "dem." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Du kan også redigere de fleste værdier
ved at klikke direkte på dem." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Gå til linket:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Kopiér kolonnenavn." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Højreklik kolonnenavnet for at kopiere det til din udklipsholder." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Generer adgangskode" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generer" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Mere" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigationstræet." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Link med hovedpanel" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Fjern link fra hovedpanel" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "For at filtrere alle databaser på serveren, så tryk Enter efter en søgeterm" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "For at filtrere alle %s i databasen, så tryk Enter efter en søgeterm" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "tabeller" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "views" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "procedurer" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "hændelser" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funktioner" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Den forespurgte side blev ikke fundet i historikken. Den kan være udløbet." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2470,43 +2477,43 @@ msgstr "" "opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", seneste stabile version:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "up-to-date" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Opret view" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Send fejlrapporter" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Indsend fejlrapport" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Der opstod en alvorlig JavaScript-fejl. Vil du at indsende en fejlrapport?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Tilpas indstillinger for rapportering" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Vis detaljer for rapport" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2514,7 +2521,7 @@ msgstr "" "Din eksport er ikke komplet, da der er en lav tidsgrænse for afvikling på " "PHP-niveaut!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2523,60 +2530,60 @@ msgstr "" "Advarsel: en form har mere end %d felter. Ved afsendelse, vil nogle felter " "måske blive ignoreret, iht. PHP's max_input_vars konfiguration." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Der er registreret fejl på serveren!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Gennemse venligst bunden af denne side." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignorér alle" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "I henhold til dine indstillinger, så indsendes de i øjeblikket - udvis " "venligst tålmodighed." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Udfør denne forespørgsel påny?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Er du sikker på at du vil slette dette bogmærke?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "En fejl opstod mens hentede SQL debug info." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s forespørgsler udført %s gange på %s sekunder." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(er) sendt" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Tabel kommentarer" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Skjul argumenterne" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Tidsforbrug:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2587,331 +2594,331 @@ msgstr "" "korrekt for dig. I Safari opleves dette typisk under tilstanden \"Private " "Mode Browsing\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "I dag" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "januar" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "februar" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "marts" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "april" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "maj" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "juni" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "juli" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "august" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "september" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "oktober" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "november" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "dec" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "søndag" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "mandag" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "tirsdag" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "onsdag" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "torsdag" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "fredag" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "lørdag" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "sø" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "on" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "lø" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "uge" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Time" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minut" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekund" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Dette felt er påkrævet" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Ret venligst dette felt" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Angiv en gyldig e-mailadresse" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Angiv en gyldig URL-adresse" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Indtast en gyldig dato" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Indtast en gyldig dato (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Angiv et gyldigt tal" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Indtast et gyldigt kreditkortnummer" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Angiv kun tal" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Angiv samme værdi igen" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Angiv venligst ikke mere end {0} tegn" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Angiv mindst {0} tegn" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Indtast venligst en værdi med en længde på mellem {0} og {1} tegn" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Indtast venligst en værdi mellem {0} og {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Angiv venligst værdi der er mindre end eller lig med {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Angiv venligst værdi der er større end eller lig med {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Angiv venligst en gyldig dato eller tid" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Angiv venligst et gyldigt HEX-tal" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3770,7 +3777,7 @@ msgstr "Indeks" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Handling" @@ -3781,8 +3788,8 @@ msgid "Keyname" msgstr "Nøglenavn" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3814,9 +3821,9 @@ msgstr "Tegnsæt (sortering)" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Kommentar" @@ -3831,14 +3838,14 @@ msgstr "Indeks %s er blevet slettet." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Slet" @@ -3952,7 +3959,7 @@ msgstr "Sporing" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4636,23 +4643,29 @@ msgstr "En samling af polygoner" msgid "A collection of geometry objects of any type" msgstr "En samling af geometriske objekter af enhver type" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numerisk" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Dato og tid" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Streng" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -4806,7 +4819,7 @@ msgstr "Brug denne værdi" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rækker" @@ -4887,7 +4900,7 @@ msgstr "NEJ" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Navn" @@ -8006,7 +8019,8 @@ msgid "No data to display" msgstr "Ingen data til visning" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8040,33 +8054,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "Navnet '%s' er et nøgleord, der er reserveret af MySQL." msgstr[1] "Navnene '%s' er nøgleord, der er reserveret af MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Der er ikke valgt kolonner." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Flytning af kolonnen er blevet fuldført." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Forespørgselsfejl" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Tabel %1$s er blevet ændret." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Forespørgselsfejl" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ret" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8077,20 +8092,20 @@ msgstr "Ret" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fuldtekst" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Distinkte værdier" @@ -9534,7 +9549,7 @@ msgstr "Ny" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Views" @@ -10022,32 +10037,32 @@ msgid "Delete the table (DROP)" msgstr "Slet tabellen (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Tjek" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimer" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Genopbyg" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Reparer" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10067,6 +10082,7 @@ msgid "Partition %s" msgstr "Partitionen %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Fjern partitionering" @@ -10284,7 +10300,7 @@ msgstr "Database eksportindstillinger" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Data dump for tabellen" @@ -10308,21 +10324,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Struktur-dump for tabellen" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struktur for visning" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Stand-in-struktur for visning" @@ -10412,7 +10428,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Data:" @@ -10521,7 +10537,7 @@ msgid "Data creation options" msgstr "Indstillinger for oprettelse af data" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Trunkér tabel forud for indsættelse" @@ -10605,7 +10621,7 @@ msgstr "Det ser ud til at din database benytter procedurer;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "alias-eksport fungerer muligvis ikke pålideligt i alle tilfælde." @@ -10674,24 +10690,24 @@ msgstr "Brug ikke AUTO_INCREMENT for slettede tabeller" msgid "AUTO_INCREMENT for table" msgstr "Tilføj AUTO_INCREMENT i tabel" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE (MIME-typer for tabellen)" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE (Relationer for tabellen)" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Det ser ud til at din tabel bruger triggere;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur for visningen %s blev eksporteret som en tabel" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Fejl ved læsning af data:" @@ -14917,7 +14933,7 @@ msgid "Pick from Central Columns" msgstr "Vælg fra centerkolonner" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -14933,92 +14949,92 @@ msgstr "første" msgid "after %s" msgstr "efter %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "partitioneret" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Værdier for kolonnen %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Partitionen %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "partitioneret" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "partitioneret" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Partitionen %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Værdi" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "partitioneret" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Lagring" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Data hovedmappe" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Gemmemappe" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Rækker som matcher:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Vis" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Tabelsøgning" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -15755,7 +15771,7 @@ msgid "at beginning of table" msgstr "i begyndelsen af tabellen" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15763,28 +15779,47 @@ msgstr "Partitionen %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Intet indeks defineret!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "partitioneret" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "partitioneret" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Rækkelængde" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Rækkelængde" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "partitioneret" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Fjern partitionering" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Rediger view" diff --git a/po/de.po b/po/de.po index b0f1468c85..2b3e9d8e20 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: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-23 03:11+0200\n" "Last-Translator: Hauke Henningsen \n" "Language-Team: German " -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1013,161 +1020,161 @@ msgstr "" "Sind Sie sich sicher, dass Sie alle Spaltenkollationen ändern und die Daten " "konvertieren wollen?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Speichern & Schließen" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Zurücksetzen" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Alles zurücksetzen" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Das Formular ist leer!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Wählen Sie mindestens eine der Optionen!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Bitte geben Sie eine gültige Nummer ein!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Bitte geben Sie eine gültige Länge ein!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Index hinzufügen" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Index bearbeiten" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "%s Spalte(n) zum Index hinzufügen" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Erzeuge einspaltigen Index" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Erzeuge zusammengesetzten Index" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Zusammenfügen mit:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Bitte wählen Sie %s Spalte(n) für den Index." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Sie müssen mindestens eine Spalte hinzufügen." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQL Vorschau" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Abfrage simulieren" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Gefundene Zeilen:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL-Befehl:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Y-Werte" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Es wurde kein Host angegeben!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Es wurde kein Benutzername eingegeben!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Es wurde kein Passwort angegeben!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Die ausgewählten Benutzer werden gelöscht" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Schließen" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Vorlage wurde erstellt." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Vorlage wurde geladen." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Vorlage wurde geändert." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Vorlage wurde gelöscht." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Weitere" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Verbindungen / Prozesse" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Die lokale Bildschirmkonfiguration ist nicht kompatibel!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1180,155 +1187,155 @@ msgstr "" "Bitte setzen Sie die Konfiguration im Einstellungen Menü auf die " "Standardwerte zurück." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Abfragen-Zwischenspeicher Effizienz" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Abfragen-Zwischenspeichernutzung" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Abfragen-Zwischenspeicher benutzt" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "CPU-Auslastung" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Arbeitsspeicher" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Auslagerungsspeicher" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Durchschnittliche Auslastung" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Gesamter Speicher" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Zwischenspeicher" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Gepufferter Speicher" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Freier Speicher" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Verwendeter Speicher" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Gesamter Swap" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Zwischengespeicherter Swap" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Verwendeter Swap" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Freier Swap" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes gesendet" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bytes empfangen" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Verbindungen" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Prozesse" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d Tabelle(n)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Anfragen" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Netzwerkverkehr" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Einstellungen" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Skala dem Raster hinzufügen" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1340,47 +1347,47 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu!" msgid "None" msgstr "keine" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Überwachung fortsetzen" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Überwachung pausieren" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Starte automatisches Aktualisieren" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Halte automatisches Aktualisieren an" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log und slow_query_log sind aktiviert." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log ist aktiviert." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log ist aktiviert." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log und general_log sind deaktiviert." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output ist nicht auf TABLE eingestellt." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output ist auf TABLE eingestellt." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1391,12 +1398,12 @@ msgstr "" "die länger als %d ausgeführt wurden. Es ist ratsam, den Wert long_query_time " "auf 0-2 Sekunden einzustellen, abhängig vom System." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time ist auf %d Sekunde(n) eingestellt." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1405,30 +1412,30 @@ msgstr "" "Neustart auf ihre Ursprungswerte zurückgesetzt:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Setze log_output auf %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Aktiviere %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Deaktiviere %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Setze long_query_time auf %d Sekunden." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1436,59 +1443,59 @@ msgstr "" "Sie können diese Variablen nicht ändern. Bitte melden Sie sich mit einem " "Root-Benutzer an, oder kontaktieren Sie Ihren Datenbank-Administrator." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Einstellungen ändern" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Titel des Reports" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Unterschied" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Geteilt durch %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Einheit" # Eigenname der MySQL-Funktion -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Vom slow Log" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Vom allgemeinen Log" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Der Datenbankname ist für diese Abfrage in den Server-Logs nicht bekannt." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analysiere Protokolle" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Analysiere und lade Protokolle. Dies kann eine Weile dauern." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Abfrage abbrechen" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1498,7 +1505,7 @@ msgstr "" "wurden. Jedoch wird nur der SQL-Text verglichen, daher kann die Angabe von " "anderen Werten der Abfrage, wie die Startzeit, unterschiedlich sein." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1508,34 +1515,34 @@ msgstr "" "Befehle in die gleiche Tabelle zusammengefasst, unabhängig von den " "eingefügten Daten." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Protokoll-Daten geladen. Innerhalb dieses Zeitaums ausgeführte Abfragen:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Springe zur Protokoll-Tabelle" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Keine Daten gefunden" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Das Protokoll wurde analysiert, es wurden jedoch keine Daten für den " "angegebenen Zeitraum gefunden." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analysieren…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Ausgabe erklären" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1543,7 +1550,7 @@ msgstr "Ausgabe erklären" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1553,58 +1560,58 @@ msgstr "Status" msgid "Time" msgstr "Zeit" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Gesamt Zeit:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profiler Ergebnisse" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabelle" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Diagramm" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Filteroptionen für Protokoll-Tabelle" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filter" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Abfragen durch Wort/Regulären Ausdruck filtern:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Gruppiere die Abfragen und ignoriere Werte in WHERE-Abfragen" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Anzahl der gruppierten Datensätze:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Insgesamt:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Lade Protokolle" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Aktualisierung der Überwachung fehlgeschlagen" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1614,28 +1621,28 @@ msgstr "" "Das ist vermutlich passiert, weil Ihre Sitzung abgelaufen ist. Es sollte " "helfen, wenn Sie die Seite aktualisieren und sich erneut anmelden." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Neu laden" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Betroffene Zeilen:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Das Einlesen der Konfigurationsdatei ist fehlgeschlagen. Es scheint sich " "nicht um eine gültige JSON-Kodierung zu handeln." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Aufbau der Diagramme mit der importierten Konfiguration ist fehlgeschlagen. " "Setze auf Standardeinstellungen zurück…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1645,59 +1652,59 @@ msgstr "" msgid "Import" msgstr "Importieren" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Konfiguration des Importmonitors" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Bitte wählen Sie die Datei, die Sie importieren möchten." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Keine Dateien zum Importieren auf dem Server verfügbar!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Anfrage analysieren" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Ratgebersystem" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Mögliche Performance-Probleme" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problem" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Empfehlung" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Regel-Details" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Ausrichtung" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Benutzte Variable/Formel" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "SQL wird formatiert .…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1708,59 +1715,59 @@ msgstr "SQL wird formatiert .…" msgid "Cancel" msgstr "Abbrechen" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Seitenbezogene Einstellungen" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Übernehmen" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Laden…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Anfrage abgebrochen!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Bearbeite Anfrage" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Anfrage fehlgeschlagen!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Fehlercode: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Fehlertext: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Es wurden keine Datenbanken ausgewählt." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Spalte wird gelöscht" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Primärschlüssel wird hinzugefügt" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1770,57 +1777,57 @@ msgstr "Primärschlüssel wird hinzugefügt" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Hier klicken um diese Meldung zu schließen" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Datenbanken werden umbenannt" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Datenbank wird kopiert" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Zeichensatz wird geändert" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Fremdschlüsselüberprüfung aktivieren" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Das Abrufen der Anzahl der Zeilen ist fehlgeschlagen." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Suche" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Suchergebnisse ausblenden" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Suchergebnisse anzeigen" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Durchsehen" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Löschen" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Die Definition einer gespeicherten Prozedur muss ein RETURN-Statement " "beinhalten!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1837,44 +1844,44 @@ msgstr "" msgid "Export" msgstr "Exportieren" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET Editor" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Werte für die Spalte %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Werte für eine neue Spalte" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Geben Sie jeden Wert in einem eigenen Feld ein." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d Wert(e) hinzufügen" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Hinweis: Wenn die Datei mehrere Tabellen enthält, werden diese in einer " "einzigen Tabelle zusammengefasst." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "SQL-Querybox ausblenden" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "SQL-Querybox anzeigen" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1888,7 +1895,7 @@ msgstr "SQL-Querybox anzeigen" msgid "Edit" msgstr "Bearbeiten" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1900,41 +1907,41 @@ msgstr "Bearbeiten" msgid "Delete" msgstr "Löschen" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d ist keine gültige Zeilennummer." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Keine automatisch gespeicherte Abfrage" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Auswählen" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Spaltenauswahl" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Diese Liste durchsuchen" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1944,15 +1951,15 @@ msgstr "" "Spalten-Liste der Datenbank %s Spalten hat, die nicht in der aktuellen " "Tabelle vorhanden sind." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Mehr anzeigen" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Sind sie sicher?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1960,52 +1967,52 @@ msgstr "" "Diese Aktion kann einige Spalten-Definitionen ändern.
Sind Sie sicher, " "dass Sie fortfahren möchten?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Weiter" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Primärschlüssel hinzufügen" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Primärschlüssel wurde erzeugt." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Führt sie zum nächsten Schritt…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" "Der erste Schritt der Normalisierung für Tabelle '%s' ist fertiggestellt." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Schritt-Ende" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Zweiter Schritt der Normalisierung (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Fertig" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Teilweise Abhängigkeiten bestätigen" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Ausgewählte teilweise Abhängigkeiten sind wie folgt:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2013,21 +2020,21 @@ msgstr "" "Hinweis: a, b,-> d, f bedeutet Werte der Spalten a und b miteinander " "kombiniert können Werte der Spalten d und f bestimmen." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Es wurden keine teilweisen Abhängigkeiten ausgewählt!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Zeige mir die möglichen teilweisen Abhängigkeiten anhand von Daten in der " "Tabelle" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Teilweise Abhängigkeiten Liste ausblenden" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2035,172 +2042,173 @@ msgstr "" "Bleib sitzen! Es dauert einige Sekunden, abhängig von Datengröße und " "Spaltenanzahl der Tabelle." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Schritt" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Die folgenden Aktionen werden ausgeführt:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "Entfernen der Spalten %s aus der Tabelle %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Folgende Tabelle erzeugen" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Dritter Schritt der Normalisierung (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Transitive Abhängigkeiten bestätigen" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Ausgewählte Abhängigkeiten sind wie folgt:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Es wurden keine Anhängigkeiten ausgewählt!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Speichern" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Suchkriterien ausblenden" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Bereichssuche" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Spaltenmaximum:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Spaltenminimum:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Minimalwert:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Maximalwert:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Kriterien für Suchen und Ersetzen ausblenden" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Suchkriterien anzeigen und ersetzen" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Jeder Punkt stellt eine Datenreihe dar." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Das Überfliegen eines Punktes zeigt seine Bezeichnung." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" "Zum Hineinzoomen markieren Sie mit der Maus einen Abschnitt des Diagramms." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Auf \"Zoom zurücksetzen\" klicken, um zum Original zurückzukehren." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Auf einen Datenpunkt klicken, um eine Datenzeile anzuzeigen bzw. zu " "editieren." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Die Größe der Darstellung kann durch Ziehen in die rechte untere Ecke " "verändert werden." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Zwei Spalten auswählen" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "2 unterschiedliche Spalten auswählen" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Datenpunkt-Inhalt" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopieren" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punkt" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "LineString" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometrie" # Ist hiermit der Inkreis gemeint? http://de.wikipedia.org/wiki/Inkreis # # Ja -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Inkreis" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Außenkreis" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Soll der Verschlüsselungs-Schlüssel importiert werden?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Verschlüsselungs-Schlüssel" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2208,24 +2216,24 @@ msgstr "" "Zeigt an, dass Sie Änderungen an dieser Seite vorgenommen haben; Sie werden " "um Bestätigung gebeten, bevor die Änderungen verworfen werden" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2233,77 +2241,77 @@ msgstr "" "Sie haben die Änderungen im Layout nicht gespeichert. Sie gehen verloren " "wenn Sie nicht speichern. Möchten Sie fortfahren?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Seitenname" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Seite speichern" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Seite speichern als" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Öffne Seite" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Seite löschen" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unbenannt" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Bitte wählen Sie eine Seite um fortzufahren" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Bitte geben Sie einen gültigen Seitennamen ein" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Möchten Sie die Änderungen der aktuellen Seite speichern?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Seite wurde erfolgreich gelöscht" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Beziehungsschema exportieren" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Änderungen gespeichert" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Option hinzufügen zu Spalte \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d Objekt(e) erstellt." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Abschicken" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Drücken Sie ESC, um das Bearbeiten abzubrechen." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2311,15 +2319,15 @@ msgstr "" "Sie haben Daten verändert und noch nicht gespeichert. Sind Sie sicher, dass " "Sie diese Seite ohne zu speichern verlassen möchten?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Zur Umsortierung ziehen." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Klicken um die Ergebnisse nach dieser Spalte zu sortieren." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2329,28 +2337,28 @@ msgstr "" "DESC zu wechseln.
- Strg oder Alt+Klicken (Mac: Shift+Option+Klicken), " "um die Spalte von der ORDER BY-Klausel zu entfernen" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Klicken zum Aus- bzw. Abwählen." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Doppelklicken, um den Spaltennamen zu kopieren." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Den Pfeil des Aufklappsmenüs anklicken
um die Sichtbarkeit der Spalte " "umzustellen." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Alles anzeigen" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2360,13 +2368,13 @@ msgstr "" "Kopieren und Löschen von Links können nach dem Speichern eventuell nicht " "funktionieren." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Bitte geben Sie eine gültige hexadezimale Zeichenfolge ein. Gültige Zeichen " "sind 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2374,130 +2382,130 @@ msgstr "" "Sollen wirklich alle Datensätze angezeigt werden? Bei einer großen Tabelle " "könnte dies den Browser zum Absturz bringen." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Ursprüngliche Länge" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "abbrechen" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Abgebrochen" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Erfolg" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Dateien hier ablegen" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Zuerst Datenbank auswählen" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Sie können die meisten Werte auch bearbeiten,
indem Sie darauf " "doppelklicken." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Sie können die meisten Werte auch bearbeiten,
indem Sie darauf klicken." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Gehe zur Verknüpfung:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Spaltennamen kopieren." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Klicken Sie auf den Spaltennamen, um ihn in die Zwischenablage zu kopieren." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generieren" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Mehr" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Panel anzeigen" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Panel ausblenden" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Zeige versteckte Navigationselemente." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Mit Hauptpanel verknüpfen" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Verknüpfung mit Hauptpanel aufheben" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Enter nach dem Suchbegriff drücken, um alle Datenbanken auf dem Server zu " "filtern" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Um alle %s in Datenbank zu filtern, nach einem Suchbegriff Enter drücken" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "Tabellen" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "Ansichten" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "Prozeduren" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "Ereignisse" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "Funktionen" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Die angeforderte Seite wurde nicht im Verlauf gefunden, sie könnte " "abgelaufen sein." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2507,28 +2515,28 @@ msgstr "" "empfohlen. Die aktuelle Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", aktuelle stabile Version:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "auf dem neuesten Stand" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Erzeuge View" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Fehlerbericht senden" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Fehlerbericht senden" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2536,15 +2544,15 @@ msgstr "" "Es ist ein JavaScript Fehler aufgetreten. Möchten Sie einen Fehlerbericht " "senden?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Einstellungen für Berichte ändern" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Berichtdetails anzeigen" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2552,7 +2560,7 @@ msgstr "" "Ihr Export ist unvollständig, wegen eines niedrigen Ausführungszeit-Limits " "in PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2562,60 +2570,60 @@ msgstr "" "werden einige der Felder möglicherweise ignoriert, wegen der PHP-" "Konfiguration max_input_vars." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Einige Fehler wurden auf dem Server entdeckt!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Bitte schauen Sie am unteren Ende dieses Fensters." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Alles ignorieren" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Gemäß Ihrer Einstellungen werden diese derzeit übermittelt, seien Sie bitte " "geduldig." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Diese Abfrage erneut ausführen?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Möchten Sie dieses Lesezeichen wirklich löschen?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "Beim Laden der SQL-Debug-Informationen ist ein Fehler aufgetreten." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s Abfragen %s mal in %s Sekunden ausgeführt." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s Argument(e) übergeben" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Argumente einblenden" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Argumente ausblenden" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Nötige Zeit:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2626,331 +2634,331 @@ msgstr "" "nicht korrekt funktionieren. In Safari wird dieses Problem häufig durch den " "privaten Modus verursacht." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Vorher" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Nächster" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Heute" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Januar" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Februar" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "März" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "April" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mai" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Juni" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Juli" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "August" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "September" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Oktober" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "November" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dez" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Montag" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Freitag" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Wo" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Stunde" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minute" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekunde" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Dieses Feld muss ausgefüllt werden" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Bitte korrigieren Sie dieses Feld" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Bitte geben Sie eine gültigen E-Mail-Adresse ein" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Bitte geben Sie eine gültige URL ein" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Bitte geben Sie ein gültiges Datum ein" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Bitte geben Sie ein gültiges Datum (ISO) ein" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Bitte geben Sie eine gültige Zahl ein" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Bitte geben Sie nur Ziffern ein" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Bitte geben Sie denselben Wert nochmal ein" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Bitte nicht mehr als {0} Zeichen eingeben" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Bitte geben Sie mindestens {0} Zeichen ein" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Bitte geben Sie einen zwischen {0} und {1} Zeichen langen Wert ein" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} ein" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Bitte geben Sie einen Wert kleiner gleich {0} ein" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Bitte geben Sie einen Wert größer gleich {0} ein" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Bitte geben Sie ein gültiges Datum oder eine gültige Zeitangabe ein" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Bitte geben Sie einen gültige hexadezimale Eingabe ein" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3822,7 +3830,7 @@ msgstr "Indizes" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Aktion" @@ -3833,8 +3841,8 @@ msgid "Keyname" msgstr "Schlüsselname" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3866,9 +3874,9 @@ msgstr "Kollation" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Kommentar" @@ -3883,14 +3891,14 @@ msgstr "Index %s wurde entfernt." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Löschen" @@ -4004,7 +4012,7 @@ msgstr "Nachverfolgung" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4696,23 +4704,29 @@ msgstr "Eine Polygon-Sammlung" msgid "A collection of geometry objects of any type" msgstr "Eine Sammlung von Geometrie-Objekten irgendeines Typs" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numerisch" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Datum und Uhrzeit" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Zeichenkette" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Räumlich" @@ -4865,7 +4879,7 @@ msgstr "Diesen Wert verwenden" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Datensätze" @@ -4950,7 +4964,7 @@ msgstr "NEIN" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Name" @@ -8061,7 +8075,8 @@ msgid "No data to display" msgstr "Keine Daten zum Anzeigen" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8095,15 +8110,21 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "Der Name '%s' ist ein reserviertes MySQL-Schlüsselwort." msgstr[1] "Die Namen '%s' sind reservierte MySQL-Schlüsselwörter." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Es wurden keine Datensätze ausgewählt." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Die Spalten wurden erfolgreich verschoben." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Abfrage-Fehler" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8111,18 +8132,13 @@ msgstr "" "Die Tabelle %1$s wurde erfolgreich geändert. Die Privilegien wurden " "angepasst." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Abfrage-Fehler" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Bearbeiten" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8133,20 +8149,20 @@ msgstr "Bearbeiten" msgid "Index" msgstr "Index" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Räumlich" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Volltext" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Unterschiedliche Werte" @@ -9574,7 +9590,7 @@ msgstr "Neu" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Ansichten" @@ -10065,32 +10081,32 @@ msgid "Delete the table (DROP)" msgstr "Tabelle löschen (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analysieren" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Überprüfen" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimieren" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Neuaufbauen" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Reparieren" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Leeren" @@ -10108,6 +10124,7 @@ msgid "Partition %s" msgstr "Partition %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Entferne die Partitionierung" @@ -10326,7 +10343,7 @@ msgstr "Datenexport-Optionen" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Daten für Tabelle" @@ -10350,21 +10367,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tabellenstruktur für Tabelle" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struktur des Views" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Stellvertreter-Struktur des Views" @@ -10455,7 +10472,7 @@ msgid "Database:" msgstr "Datenbank:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Daten:" @@ -10559,7 +10576,7 @@ msgid "Data creation options" msgstr "Datenterstellungsoptionen" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "TRUNCATE Tabelle vor dem Einfügen" @@ -10645,7 +10662,7 @@ msgstr "Es scheint, dass Ihre Datenbank Prozeduren verwendet;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" "Alias-Export arbeitet möglicherweise nicht in allen Fällen zuverlässig." @@ -10711,24 +10728,24 @@ msgstr "AUTO_INCREMENT für exportierte Tabellen" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT für Tabelle" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPEN DER TABELLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONEN DER TABELLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Es scheint, dass Ihre Tabelle Trigger verwendet;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur des Views %s als Tabelle exportiert" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Fehler beim Lesen der Daten:" @@ -14951,7 +14968,7 @@ msgid "Pick from Central Columns" msgstr "Aus zentralen Spalten wählen" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Ausdruck" @@ -14965,92 +14982,92 @@ msgstr "an den Anfang" msgid "after %s" msgstr "nach %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Partitioned by:" msgid "Partition by:" msgstr "partitioniert von:" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Werte für die Spalte %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partitions" msgid "Partitions:" msgstr "Partitionen" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Sub partitioned by:" msgid "Subpartition by:" msgstr "Unterpartitioniert von:" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Sub partitioned by:" msgid "Subpartitions:" msgstr "Unterpartitioniert von:" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partitions" msgid "Partition" msgstr "Partitionen" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Wert" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "partitioniert" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Formate" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Pfad für Datendateien" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Speicher Verzeichnis" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Gefundene Zeilen:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Anzeigen" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Tabellensuche" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -15782,26 +15799,45 @@ msgid "at beginning of table" msgstr "am Tabellenanfang" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Partitionen" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Kein Index definiert!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "partitioniert von:" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Unterpartitioniert von:" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Datenlänge" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Indexlänge" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partitioned by:" +msgid "Partition table" +msgstr "partitioniert von:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Entferne die Partitionierung" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "View/Ansicht bearbeiten" diff --git a/po/el.po b/po/el.po index 21739a352f..400957c329 100644 --- a/po/el.po +++ b/po/el.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-29 10:35+0200\n" "Last-Translator: Παναγιώτης Παπάζογλου \n" -"Language-Team: Greek " -"\n" +"Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,8 +167,8 @@ msgid "Comments" msgstr "Σχόλια" #: db_datadict.php:156 -#: libraries/controllers/TableStructureController.class.php:952 -#: libraries/controllers/TableStructureController.class.php:957 +#: libraries/controllers/TableStructureController.class.php:1183 +#: libraries/controllers/TableStructureController.class.php:1188 #: libraries/tracking.lib.php:922 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 @@ -176,7 +176,7 @@ msgstr "Σχόλια" msgid "Primary" msgstr "Πρωτεύον" -#: db_datadict.php:166 js/messages.php:317 libraries/Index.class.php:567 +#: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 libraries/mult_submits.lib.php:403 @@ -200,16 +200,16 @@ msgstr "Πρωτεύον" msgid "No" msgstr "Όχι" -#: db_datadict.php:166 js/messages.php:444 libraries/Index.class.php:568 +#: db_datadict.php:166 js/messages.php:445 libraries/Index.class.php:568 #: libraries/Index.class.php:605 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/controllers/TableStructureController.class.php:541 -#: libraries/controllers/TableStructureController.class.php:1203 -#: libraries/controllers/TableStructureController.class.php:1212 -#: libraries/controllers/TableStructureController.class.php:1217 -#: libraries/controllers/TableStructureController.class.php:1222 -#: libraries/controllers/TableStructureController.class.php:1227 +#: libraries/controllers/TableStructureController.class.php:772 +#: libraries/controllers/TableStructureController.class.php:1434 +#: libraries/controllers/TableStructureController.class.php:1443 +#: libraries/controllers/TableStructureController.class.php:1448 +#: libraries/controllers/TableStructureController.class.php:1453 +#: libraries/controllers/TableStructureController.class.php:1458 #: libraries/mult_submits.inc.php:82 libraries/mult_submits.inc.php:195 #: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 #: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 @@ -251,7 +251,7 @@ msgstr "Δεν βρέθηκαν πίνακες στη βάση δεδομένω #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:119 -#: templates/database/structure/show_create.phtml:18 +#: templates/database/structure/show_create.phtml:19 msgid "Tables" msgstr "Πίνακες" @@ -418,23 +418,23 @@ msgid "Point:" msgstr "Σημείο:" #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 -#: gis_data_editor.php:370 js/messages.php:433 +#: gis_data_editor.php:370 js/messages.php:434 msgid "X" msgstr "Χ" #: gis_data_editor.php:217 gis_data_editor.php:245 gis_data_editor.php:301 -#: gis_data_editor.php:376 js/messages.php:434 +#: gis_data_editor.php:376 js/messages.php:435 msgid "Y" msgstr "Υ" #: gis_data_editor.php:239 gis_data_editor.php:295 gis_data_editor.php:368 -#: js/messages.php:436 +#: js/messages.php:437 #, php-format msgid "Point %d" msgstr "Σημείο %d" #: gis_data_editor.php:252 gis_data_editor.php:308 gis_data_editor.php:386 -#: js/messages.php:442 +#: js/messages.php:443 msgid "Add a point" msgstr "Προσθήκη σημείου" @@ -456,7 +456,7 @@ msgstr "Εσωτερικός δακτύλιος %d:" msgid "Add a linestring" msgstr "Προσθήκη κειμένου γραμμής" -#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:443 +#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:444 msgid "Add an inner ring" msgstr "Προσθήκη εσωτερικού δακτυλίου" @@ -473,7 +473,7 @@ msgstr "Προσθήκη πολυγώνου" msgid "Add geometry" msgstr "Προσθήκη γεωμετρίας" -#: gis_data_editor.php:409 js/messages.php:292 +#: gis_data_editor.php:409 js/messages.php:293 #: libraries/DbSearch.class.php:464 libraries/DisplayResults.class.php:1799 #: libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:166 @@ -528,7 +528,7 @@ msgstr "" msgid "Succeeded" msgstr "Επιτεύχθηκε" -#: import.php:58 js/messages.php:501 +#: import.php:58 js/messages.php:502 msgid "Failed" msgstr "Απέτυχε" @@ -626,7 +626,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Αδύνατη η φόρτωση της διαδικασίας της εισαγωγής." -#: import_status.php:112 js/messages.php:378 libraries/Util.class.php:780 +#: import_status.php:112 js/messages.php:379 libraries/Util.class.php:780 #: libraries/export.lib.php:518 #: libraries/plugins/schema/Export_Relation_Schema.class.php:298 #: user_password.php:253 @@ -652,7 +652,7 @@ msgstr "" msgid "General settings" msgstr "Γενικές ρυθμίσεις" -#: index.php:191 js/messages.php:525 +#: index.php:191 js/messages.php:526 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:247 msgid "Change password" @@ -960,7 +960,13 @@ msgstr "" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Θέλετε πραγματικά να ΠΕΡΙΚΟΨΕΤΕ τη(ις) επιλεγμένη(ες) κατάτμηση(εις);" -#: js/messages.php:67 +#: js/messages.php:66 +#, fuzzy +#| msgid "Do you really want to TRUNCATE the selected partition(s)?" +msgid "Do you really want to remove partitioning?" +msgstr "Θέλετε πραγματικά να ΠΕΡΙΚΟΨΕΤΕ τη(ις) επιλεγμένη(ες) κατάτμηση(εις);" + +#: js/messages.php:68 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -974,16 +980,16 @@ msgstr "" "εμφανίζονται σωστά υπό τη νέα σύνθεση. Σε αυτή την περίπτωη, προτείνουμε να " "επανέλθετε στην αρχική σύνθεση και να αναφερθείτε στις οδηγίες στο " -#: js/messages.php:73 +#: js/messages.php:74 msgid "Garbled Data" msgstr "Αλλοιωμένα Δεδομένα" -#: js/messages.php:75 +#: js/messages.php:76 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Θέλετε, σίγουρα, να αλλάξετε τη σύνθεση και να μετατρέψετε τα δεδομενα;" -#: js/messages.php:77 +#: js/messages.php:78 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1000,7 +1006,7 @@ msgstr "" "χαρακτηριστικό επεξεργασίας στήλη(ων) (τον Σύνδεσμο «Αλλαγή») στη σελίδα " "δομής πίνακα." -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1008,161 +1014,161 @@ msgstr "" "Θέλετε, σίγουρα, να αλλάξετε όλες τις συνθέσεις στηλών και να μετατρέψετε τα " "δεδομενα;" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Αποθήκευση & κλείσιμο" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Επαναφορά" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Επαναφορά όλων" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Η τιμή δεν υπάρχει στη φόρμα!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Επιλέξτε τουλάχιστον μια από τις επιλογές!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Εισάγετε έναν έγκυρο αριθμό!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Εισάγετε ένα έγκυρο μήκος!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Προσθήκη ευρετηρίου" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Επεξεργασία ευρετηρίου" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Προσθήκη %s στήλης(ών) στο ευρετήριο" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Δημιουργία ευρετηρίου μονής στήλης" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Δημιουργία σύνθετου ευρετηρίου" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Σύνθεση με:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Επιλέξτε στήλη(ες) για το ευρετήριο." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Προεπισκόπηση SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Εξομοίωση ερωτήματος" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Εγγραφές που ταιριάζουν:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "Εντολή SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Τιμές Υ" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Το όνομα του συστήματος είναι κενό!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Το όνομα του χρήστη είναι κενό!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Ο κωδικός πρόσβασης είναι κενός!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Κλείσιμο" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Το πρότυπο δημιουργήθηκε." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Το πρότυπο φορτώθηκε." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Το πρότυπο ανανεώθηκε." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Το πρότυπο διαγράφηκε." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Άλλα" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Συνδέσεις / Διεργασίες" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Ασύμβατη η ρύθμιση τοπικής εποπτείας!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1174,155 +1180,155 @@ msgstr "" "εποπτείας.Είναι πολύ πιθανό ότι η τρέχουσα ρύθμιση δεν θα λειτουργεί πλέον. " "Επαναφέρτε τις ρυθμίσεις σας στις προεπιλεγμένες στο μενού Ρυθμίσεις." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Αποτελεσματικότητα λανθάνουσας μνήμης ερωτήματος" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Χρήση λανθάνουσας μνήμης ερωτήματος" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Χρησιμοποιημένη λανθάνουσα μνήμη ερωτήματος" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Χρήση CPU συστήματος" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Μνήμη συστήματος" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Αδράνεια συστήματος" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Μέσο φορτίο" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Συνολική μνήμη" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Λανθάνουσα μνήμη" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Ρυθμισμένη μνήμη" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Ελεύθερη μνήμη" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Χρησιμοποιημένη μνήμη" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Σύνολο αδράνειας" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Λανθανουσα αδράνεια" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Χρησιμοποιημένη αδράνεια" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Ελεύθερη αδράνεια" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Σταλθέντα Bytes" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Ληφθέντα Bytes" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Συνδέσεις" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Διεργασίες" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d πίνακας(ες)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Ερωτήσεις" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Κίνηση" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Προσθήκη διαγράμματος στο πλέγμα" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1334,47 +1340,47 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι msgid "None" msgstr "Καμία" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Επανεκίννηση εποπτείας" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Παύση εποπτείας" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Έναρξη αυτόματης ανανέωσης" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Λήξη αυτόματης ανανέωσης" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "Το general_log και το slow_query_log είναι ενεργοποιημένα." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "Το general_log είναι ενεργοποιημένο." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "Το slow_query_log είναι ενεργοποιημένο." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "Το slow_query_log και το general_log είναι απενεργοποιημένα." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "Το log_output δεν έχει οριστεί στο TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "Το log_output έχει οριστεί στο TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1386,12 +1392,12 @@ msgstr "" "ορίσετε το long_query_time μεταξύ 0-2 δευτερόλεπτα, κάτι που εξαρτάται από " "το σύστημά σας." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "Το long_query_time έχει οριστεί σε %d δευτερόλεπτο(α)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1400,30 +1406,30 @@ msgstr "" "προεπιλογές με την επανεκκίνηση του διακομιστή:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Ορισμός του log_output σε %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Ενεργοποίηση %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Απενεργοποίηση %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Ορισμός του long_query_time σε %d δευτερόλεπτα." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1432,59 +1438,59 @@ msgstr "" "Συνδεθείτε ως λογαριασμός root ή επικοινωνήστε με τον διαχειριστή της βάσης " "δεδομένων σας." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Αλλαγή ρυθμίσεων" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Τίτλος διαγράμματος" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Διαφορικός" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Διαίρεση με %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Μονάδα" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Από την αργή καταγραφή" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Από την γενική καταγραφή" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Το όνομα της βάσης δεδομένων δεν είναι γνωστό για αυτό το ερώτημα στα αρχεία " "καταγραφής του διακομιστή." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Ανάλυση καταγραφών" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Ανάλυση & φόρτωση καταγραφών. Αυτό ίσως διαρκέσει λίγο." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Ακύρωση αιτήματος" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1495,7 +1501,7 @@ msgstr "" "ομαδοποίησης, έτσι οι άλλες ιδιότητες των ερωτημάτων, όπως ο χρόνος " "εκκίνησης, μπορεί να διαφέρουν." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1504,34 +1510,34 @@ msgstr "" "Αφού επιλέχθηκε η ομαδοποίηση των εντολών INSERT, τα ερωτήματα INSERT εντός " "του ίδιου πίνακα επίσης ομαδοποιηούνται ανεξάρτητα από εισαγόμενα δεδομένα." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Τα δεδομένα καταγραφής φορτώθηκαν. Τα ερωτήματα που εκτελέστηκαν σε αυτή την " "επέκταση χρόνου:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Μετάβαση στον πίνακα Καταγραφής" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Δεν βρέθηκαν δεδομένα" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Η καταγραφή αναλύθηκε αλλά δεν βρέθηκαν δεδομένα σε αυτή την επέκταση χρόνου." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Ανάλυση…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Επεξήγηση προϊόντος" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1539,7 +1545,7 @@ msgstr "Επεξήγηση προϊόντος" msgid "Status" msgstr "Κατάσταση" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1549,59 +1555,59 @@ msgstr "Κατάσταση" msgid "Time" msgstr "Χρόνος" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Συνολικός χρόνος:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Αποτελέμσατα προφίλ" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Πίνακας" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Διάγραμμα" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Επιλογές φιλτραρίσματος πίνακα καταγραφής" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Φίλτρο" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Φιλτράρισμα ερωτημάτων ανά λέξη/κανονική έκφραση:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Ομαδοποίηση ερωτημάτων, αγνοώντας τα δεδομένα μεταβλητής στις δηλώσεις WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Άθροισμα ομαδοποιημένων γραμμών:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Σύνολο:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Φόρτωση καταγραφών" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Η ανανέωση της εποπτείας απέτυχε" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1612,27 +1618,27 @@ msgstr "" "επαναφόρτωση της σελίδας και η επανεισαγωγή των διαπιστευτηρίων σας θα " "βοηθήσουν." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Επαναφόρτωση σελίδας" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Επηρρεαζόμενες εγγραφές:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Αποτυχία ανάλυσης αρχείου config. Δεν φαίνεται να είναι έγκυρος κώδκας JSON." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Απέτυχε η δημιουργία καννάβου διαγράμματος με την εισαγωγή ρυθμίσεων. " "Επαναφορά στην προεπιλεγμένη ρύθμιση…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1642,59 +1648,59 @@ msgstr "" msgid "Import" msgstr "Εισαγωγή" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Εισαγωγή ρύθμισης εποπτείας" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Ελέγξτε το αρχείο που θέλετε να εισάγετε." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Κανένα διαθέσιμο αρχείο στο διακομιστή για εισαγωγή!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Ανάλυση ερωτήματος" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Σύστημα σύμβουλου" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Πιθανά θέματα απόδοσης" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Θέμα" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Πρόταση" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Λεπτομέρειες ρόλου" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Δικαιολόγηση" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Χρησιμοποιημένη μεταβλητή / τύπος" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Έλεγχος" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Διαμόρφωση SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1705,59 +1711,59 @@ msgstr "Διαμόρφωση SQL…" msgid "Cancel" msgstr "Άκυρο" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Ρυθμίσεις σχετισμένες με σελίδα" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Εφαρμογή" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Φόρτωση…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Το Αίτημα διακόπηκε!!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Προώθηση αιτήματος" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Το Αίτημα απέτυχε!!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Κωδικός σφάλματος: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Κείμενο σφάλματος: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Δεν έχετε επιλέξει βάσεις δεδομένων." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Διαγραφή στήλης" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1767,56 +1773,56 @@ msgstr "Προσθήκη πρωτεύοντος κλειδιού" msgid "OK" msgstr "Εντάξει" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Πατήστε γαι να παραλείψετε αυτή την ειδοποίηση" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Μετονομασία βάσεων δεδομένων" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Αντιγραφή βάσης δεδομένων" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Αλλαγή συνόλου χαρακτήρων" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Ενεργοποίηση ελέγχων μη διακριτών κλειδιών" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Αποτυχία λήψης πραγματικής μέτρησης εγγραφών." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Αναζήτηση" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Απόκρυψη αποτελεσμάτων αναζήτησης" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Προβολή αποτελεσμάτων αναζήτησης" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Αναζήτηση" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Διαγραφή" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Ο ορισμός μιας αποθηκευμένης συνάρτησης πρέπει να περιέχει μια δήλωση RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1833,42 +1839,42 @@ msgstr "" msgid "Export" msgstr "Εξαγωγή" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Επεξεργαστής ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Τιμές για τη στήλη %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Τιμές για νέα στήλη" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδίο." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Προσθήκη %d τιμής(ών)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Σημείωση: Αν το αρχείο περιέχει πολλούς πίνακες, θα ενωθουν σε έναν." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Απόκρυψη παραθύρου ερωτήματος" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1882,7 +1888,7 @@ msgstr "Προβολή παραθύρου ερωτήματος" msgid "Edit" msgstr "Επεξεργασία" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1894,41 +1900,41 @@ msgstr "Επεξεργασία" msgid "Delete" msgstr "Διαγραφή" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "Ο αριθμός %d δεν είναι έγκυρος αριθμός γραμμών." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Κανένα αυτόματα αποθηκευμένο ερώτημα" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Μεταβλητή %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Διαλέξτε" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Επιλογέας στήλης" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Αναζήτηση σε αυτή τη λίστα" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1938,15 +1944,15 @@ msgstr "" "για τη βάση δεδομένων %s έχει στήλες που δεν είναι παρούσες στον τρέχοντα " "πίνακα." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Δείτε περισσότερα" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Σίγουρα;" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1954,51 +1960,51 @@ msgstr "" "Αυτή η ενέργεια ίσως αλλάξει ορισμένους από τους ορισμούς στηλών.
Θέλετε σίγουρα να συνεχίσετε;" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Συνέχεια" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Προσθήκη πρωτεύοντος κλειδιού" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Προστέθηκε πρωτεύον κλειδί." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Μεταφέροντάς σας στο επόμενο βήμα…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Το πρώτο βήμα κανονικοποίησης ολοκληρώθηκε για τον πίνακα «%s»." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Τέλος βήματος" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Δεύτερο βήμα κανονικοποίησης (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Ολοκληρώθηκε" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Επιβεβαίωση μερικών εξαρτήσεων" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Οι επιλεγμένες μερικές εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2006,19 +2012,19 @@ msgstr "" "Σημείωση: a, b -> d,f αναφέρει τιμές των στηλών a και b όπου συνδυαζόμενες " "μπορούν να ορίσουν τις τιμές των στηλών d και f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Δεν έχετε επιλέξει μερικές εξαρτήσεις!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Προβολή των πιθανών μερικών εξαρτήσεων με βάση δεδομένα στον πίνακα" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Απόκρυψη λίστας μερικών εξαρτήσεων" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2026,169 +2032,170 @@ msgstr "" "Καθήστε αναπαυτικά! Ίσως διαρκέσει μερικά δευτερόλεπτα βάσει του μεγέθους " "των δεδομένων και του αριθμού στηλών στον πίνακα." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Βήμα" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Οι ακόλουθες πράξεις θα πραγματοποιηθούν:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "Απομάκρυνση στηλών από %s από τον πίνακα %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Δημιουργία του ακόλουθου πίνακα" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Τρίτο βήμα κανονικοποίησης (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Επιβεβαίωση μεταβατικών εξαρτήσεων" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Οι επιλεγμένες εξαρτήσεις είναι ως ακολούθως:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Δεν έχετε επιλέξει εξαρτήσεις!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Αποθήκευση" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Απόκρυψη κριτηρίων αναζήτησης" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Αναζήτηση εύρους" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Μέγιστο στήλης:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Ονόματα στηλών:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Ελάχιστη τιμή:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Μέγιστη τιμή:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Απόκρυψη κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Προβολή κριτηρίων εύρεσης και αντικατάστασης" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Κάθε σημείο αναπαρειστά μια εγγραφή δεδομένων." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Η μετάβαση πάνω από ένα σημείο θα δείξει την ετικέτα του." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Για να εστιάσετε, επιλέξτε ένα τομέα της εκτύπωσης με το ποντίκι." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Πατήστε το κουμπί επαναφοράς εστίασης για να επιστρέψετε στην αρχική " "κατάσταση." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Πατήστε ένα σημείο δεδομένων για να δείτε και πιθανά να επεξεργαστείτε τη " "γραμμή δεδομένων." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Ο χώρος εργασίας μπορεί να αλλάξει μέγεθος σύρωντας την κάτω δεξιά γωνία." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Επιλογή δύο στηλών" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Επιλογή δύο διαφορετικών στηλών" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Αντιγραφή" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Σημείο" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Κείμενο γραμμής" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Πολύγωνο" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Γεωμετρία" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Εσωτερικός δακτύλιος" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Εξωτερικός δακτύλιος" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Θέλετε να αντιγράψετε κλειδί κρυπτογράφησης;" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Κλειδί κρυπτογράφησης" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2196,24 +2203,24 @@ msgstr "" "Δείχνει ότι έχετε κάνει αλλαγές σε αυτή τη σελίδα, θα ερωτηθείτε για " "επιβεβαίωση πριν εγκαταλείψετε τις αλλαγές" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2221,77 +2228,77 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Όνομα σελίδας" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Αποθήκευση σελίδας" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Αποθήκευση σελίδας ως" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Άνοιγμα σελίδας" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Διαγραφή σελίδας" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Χωρίς τίτλο" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Επιλέξτε σελίδα για συνέχεια" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Εισάγετε ένα έγκυρο όνομα σελίδας" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές στην τρέχουσα σελίδα;" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Η σελίδα διαγράφτηκε επιτυχώς" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Εξαγωγή σχεσιακού σχήματος" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Προσθήκη επιλογής για τη στήλη «%s»." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d αντικείμενο(α) δημιουργήθηκε(αν)." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Αποστολή" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Πατήστε το escape για ακύρωση της επεξεργασίας." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2299,15 +2306,15 @@ msgstr "" "Έχετε επεξεργαστεί ορισμένα δεδομένα και δεν έχουν αποθηκευτεί. Θέλετε να " "αφήσετε τη σελίδα χωρίς αποθήκευση των δεδομένων;" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Σύρτε για ανακατανομή." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Πατήστε για ταξινόμηση των αποτελεσμάτων κατά αυτή τη στήλη." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2317,26 +2324,26 @@ msgstr "" "ASC/DESC.
- Control+Κλικ ή Alt+Κλικ (Για Mac: Shift+Option+Click) για " "απομάκρυνση της στήλης από τη δήλωση ORDER BY" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Πατήστε για εναλλαγή επισήμανσης." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Διπλό κλικ για αντιγραφή ονόματος στήλης." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Εμφάνιση όλων" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2345,12 +2352,12 @@ msgstr "" "την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή " "ίσως να μη λειτουργούν μετά την αποθήκευση." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Εισάγετε ένα έγκυρο δεκαεξαδικό αριθμό. Έγκυροι χαρακτήρες είναι 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2358,129 +2365,129 @@ msgstr "" "Θέλετε πραγματικά να δείτε όλες τις εγγραφές; Για ένα μεγάλο πίνακα, αυτό " "ίσως φέρει δυσλειτουργία στον φυλλομετρητή σας." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Αρχικό μήκος" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "άκυρο" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Επιτυχία" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Κατάσταση εισαγωγής" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Ρίξτε αρχεία εδώ" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Επιλέξτε βάση δεδομένων πρώτα" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας με " "διπλό κλικ κατευθείαν σε αυτές." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας " "κατευθείαν σε αυτές." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Μετάβαση στο σύνδεσμο:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Αντιγραφή ονόματος στήλης." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Δεξί κλικ στο όνομα στήλης για αντιγραφή του στο πρόχειρο." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Εμφάνιση πίνακα" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Απόκρυψη πίνακα" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Προβολή κρυφών αντικειμένων δέντρου πλοήγησης." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Σύνδεσμος με τον βασικό πίνακα" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Αποσύνδεση από τον βασικό πίνακα" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Για να φιλτράρετε όλες τις βάσεις δεδομένων στον διακομιστή, πατήστε το " "Enter μετά τον όρο αναζήτησης" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Για να φιλτράρετε όλα τα %s στη βάση δεδομένων, πατήστε το Enter μετά τον " "όρο αναζήτησης" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "πίνακες" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "προβολές" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "διαδικασίες" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "συμβάντα" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "συναρτήσεις" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "Η αιτούμενη σελίδα δεν βρέθηκε στο ιστορικό, ίσως έληξε." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2490,28 +2497,28 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", τελευταία έκδοση:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "ενημερωμένο" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Δημιουργία προβολής" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Αποστολή αναφορών σφάλματος" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Υποβολή αναφοράς σφάλματος" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2519,21 +2526,21 @@ msgstr "" "Ένα ανεπανόρθωτο σφάλμα έχει συμβεί. Θέλετε να στείλετε μια αναφορά " "σφάλματος;" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Αλλαγή ρυθμίσεων αναφοράς" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Εμφάνιση λεπτομερειών αναφοράς" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Η εξαγωγή σας ήταν ανεπιτυχής, λόγω χαμηλού χρονικού ορίου στην PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2543,58 +2550,58 @@ msgstr "" "Κατά την υποβολή ορισμένα πεδία ίσως αγνοηθούν λόγω της ρύθμισης της PHP " "max_input_vars." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Ανιχνεύτηκαν ορισμένα σφάλματα στο διακομιστή!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Δείτε στο κάτω μέρος αυτού του παραθύρου." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Παράληψη Όλων" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Σύμφωνα με τις ρυθμίσεις σας, υποβάλλονται άμεσα, κάντε υπομονή." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Επανεκτέλεση αυτού του ερώτηματος ξανά;" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Θέλετε πραγματικά να διαγράψετε αυτό το σελιδοδείκτη;" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "Κάποιο σφάλμα συνέβει κατά τη λήψη πληροφοριών αποσφαλμάτωσης SQL." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s ερωτήματα εκτελέστηκαν %s φορές σε %s δευτερόλεπτα." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s επιχείρημα(τα) πέρασαν" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Προβολή επιχειρημάτων" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Απόκρυψη επιχειρημάτων" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Χρόνος που παρήλθε:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2605,331 +2612,331 @@ msgstr "" "σωστά για σας. Στο Safari, τέτοιο πρόβλημα συνήθως συμβαίνει λόγω " "ενεργοποίησης της «Κατάστασης Ιδιωτικής Πλοήγησης»." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Προηγούμενο" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Απριλίου" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Μαΐου" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "ημερολόγιο-μήνας-έτος" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "κανένα" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Δευτερόλεπτο" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Αυτό το πεδίο είναι υποχρεωτικό" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Διορθώστε αυτό το πεδίο" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Εισάγετε μια έγκυρή ηλεκτρονική διεύθυνση" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Εισάγετε έναν έγκυρο URL" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Εισάγετε μια έγκυρη ημερομηνία" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Εισάγετε μια έγκυρη ημερομηνία (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Εισάγετε έναν έγκυρο αριθμό" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Εισάγετε μόνο ψηφία" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Εισάγετε την ίδια τιμή ξανά" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Εισάγετε όχι περισσότερους από {0} χαρακτήρες" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Εισάγετε τουλάχιστον {0} χαρακτήρες" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Εισάγετε μια τιμή μήκους μεταξύ {0} και {1} χαρακτήρες" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Εισάγετε εισάγετε μια τιμή μεταξύ {0} και {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Εισάγετε μια τιμή μικρότερη ή ίση με {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Εισάγετε μια τιμή μεγαλύτερη ή ίση με {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Εισάγετε μια έγκυρη ημερομηνία ή ώρα" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3794,7 +3801,7 @@ msgstr "Ευρετήρια" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Ενέργεια" @@ -3805,8 +3812,8 @@ msgid "Keyname" msgstr "Όνομα κλειδιού" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3838,9 +3845,9 @@ msgstr "Σύνθεση" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Σχόλιο" @@ -3855,14 +3862,14 @@ msgstr "Το ευρετήριο %s έχει διαγραφεί." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Διαγραφή" @@ -3976,7 +3983,7 @@ msgstr "Παρακολούθηση" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4668,23 +4675,29 @@ msgstr "Μια συλλογή πολυγώνων" msgid "A collection of geometry objects of any type" msgstr "Μια συλλογή γεωμετρικών αντικειμένων οποιουδήποτε τύπου" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Αριθμητικό" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Ημερομηνία και ώρα" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Κείμενο" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Χωρική" @@ -4728,12 +4741,10 @@ msgid "Analyze Explain at %s" msgstr "Ανάλυση Εξήγησης στο %s" #: libraries/Util.class.php:1222 -#| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Χωρίς κώδικα PHP" #: libraries/Util.class.php:1234 -#| msgid "Submit Query" msgid "Submit query" msgstr "Υποβολή ερωτήματος" @@ -4836,7 +4847,7 @@ msgstr "Χρήση αυτής της τιμής" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Εγγραφές" @@ -4919,7 +4930,7 @@ msgstr "ΌΧΙ" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Όνομα" @@ -8045,7 +8056,8 @@ msgid "No data to display" msgstr "Κανένα δεδομένο για προβολή" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8079,32 +8091,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "Το όνομα «%s» είναι δεσμευμένη λέξη-κλειδί MySQL." msgstr[1] "Τα ονόματα «%s» είναι δεσμευμένες λέξεις-κλειδία MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Δεν επιλέχθηκε στήλη." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Οι στήλες μετακινήθηκαν επιτυχώς." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Σφάλμα ερωτήματος" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς. Τα προνόμια έχουν προσαρμοστεί." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Σφάλμα ερωτήματος" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Αλλαγή" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8115,20 +8128,20 @@ msgstr "Αλλαγή" msgid "Index" msgstr "Ευρετήριο" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Χωρική" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Πλήρες κείμενο" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Διακριτές τιμές" @@ -9550,7 +9563,7 @@ msgstr "Νέα" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Προβολές" @@ -10036,32 +10049,32 @@ msgid "Delete the table (DROP)" msgstr "Διαγραφή της βάσης δεδομένων (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Ανάλυση" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Έλεγχος" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Βελτιστοποίηση" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Επανακατασκευή" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Επισκευή" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Διαγραφή" @@ -10079,6 +10092,7 @@ msgid "Partition %s" msgstr "Κατάτμηση %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Απομάκρυνση κατάτμησης" @@ -10296,7 +10310,7 @@ msgstr "Επιλογές απορριμμάτων δεδομένων" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Άδειασμα δεδομένων του πίνακα" @@ -10320,21 +10334,21 @@ msgstr "Προσδιορισμός" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Δομή πίνακα για τον πίνακα" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Δομή για προβολή" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Στημένη δομή για προβολή" @@ -10424,7 +10438,7 @@ msgid "Database:" msgstr "Βάση δεδομένων:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Δεδομένα:" @@ -10528,7 +10542,7 @@ msgid "Data creation options" msgstr "Επιλογές δημιουργίας δεδομένων" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Εκκαθάριση του πίνακα πριν την εισαγωγή" @@ -10613,7 +10627,7 @@ msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιε #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" "Η εξαγωγή ετικέτας μπορεί να μη λειτουργεί αξιόπιστα σε όλες τις περιπτώσεις." @@ -10679,24 +10693,24 @@ msgstr "AUTO_INCREMENT για άχρηστους πίνακες" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT για πίνακα" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "ΤΥΠΟΙ MIME ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "ΣΥΣΧΕΤΙΣΕΙΣ ΓΙΑ ΠΙΝΑΚΑ" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Φαίνεται ότι ο πίνακάς σας χρησιμοποιεί δείκτες" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Δομή για προβολή %s εξαγώμενη ως πίνακας" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Σφάλμα ανάγνωσης δεδομένων:" @@ -12388,7 +12402,6 @@ msgid "User group" msgstr "Ομάδας χρηστών" #: libraries/server_privileges.lib.php:730 -#| msgid "Requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Δεν απαιτούνται κρυπτογραφημένες συνδέσεις SSL." @@ -12463,7 +12476,6 @@ msgstr "" #: libraries/server_privileges.lib.php:3179 #: libraries/server_privileges.lib.php:4437 #: templates/privileges/edit_routine_privileges.phtml:11 -#| msgid "Routines" msgid "Routine" msgstr "Εργασία" @@ -12476,12 +12488,10 @@ msgstr "" "πίνακες δικαιωμάτων." #: libraries/server_privileges.lib.php:1042 -#| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Επιτρέπει την αλλαγή και διαγραφή αυτής της εργασίας." #: libraries/server_privileges.lib.php:1047 -#| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Επιτρέπει την εκτέλεση αυτής της εργασίας." @@ -12688,7 +12698,6 @@ msgstr "Δημιουργία νέου λογαριασμού χρήστη με #: libraries/server_privileges.lib.php:3178 #: templates/privileges/edit_routine_privileges.phtml:12 -#| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Δικαιώματα για τη συγκεκριμένη εργασία" @@ -14907,7 +14916,7 @@ msgid "Pick from Central Columns" msgstr "Επιλογή από τις Κεντρικές Στήλες" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Έκφραση" @@ -14921,79 +14930,64 @@ msgstr "πρώτη" msgid "after %s" msgstr "μετά το %s" -#: templates/columns_definitions/partitions_form.phtml:9 -#| msgid "Partitioned by:" +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "Κατάτμηση κατά:" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 -#| msgid "Values for column %s" +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "Έκφραση ή λίστα στηλών" -#: templates/columns_definitions/partitions_form.phtml:30 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "Κατατμήσεις:" -#: templates/columns_definitions/partitions_form.phtml:38 -#| msgid "Sub partitioned by:" +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "Υπόκατάτμηση κατά:" -#: templates/columns_definitions/partitions_form.phtml:59 -#| msgid "Sub partitioned by:" +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "Υποκατατμήσεις:" -#: templates/columns_definitions/partitions_form.phtml:71 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "Κατάτμηση" -#: templates/columns_definitions/partitions_form.phtml:72 -#| msgid "Value" +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "Τιμές" -#: templates/columns_definitions/partitions_form.phtml:74 -#| msgid "partitioned" +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "Υποκατάτμηση" -#: templates/columns_definitions/partitions_form.phtml:76 -#| msgid "Engines" +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "Μηχανή" -#: templates/columns_definitions/partitions_form.phtml:78 -#| msgid "Data home directory" +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "Φάκελος δεδομένων" -#: templates/columns_definitions/partitions_form.phtml:79 -#| msgid "Save directory" +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "Φάκελος ευρετηρίου" -#: templates/columns_definitions/partitions_form.phtml:80 -#| msgid "Matched rows:" +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "Μέγιστες εγγραφές" -#: templates/columns_definitions/partitions_form.phtml:81 -#| msgid "rows" +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "Ελάχιστες εγγραφές" -#: templates/columns_definitions/partitions_form.phtml:82 -#| msgid "Table search" +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "Χώρος πίνακα" -#: templates/columns_definitions/partitions_form.phtml:83 -#| msgid "User group" +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "Κόμβος ομάδας" @@ -15399,7 +15393,6 @@ msgstr "" "χρησιμοποιηθούν." #: templates/privileges/add_privileges_routine.phtml:3 -#| msgid "Add privileges on the following table:" msgid "Add privileges on the following routine:" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη εργασία:" @@ -15721,26 +15714,45 @@ msgid "at beginning of table" msgstr "στην αρχή του πίνακα" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Κατατμήσεις" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Δεν ορίστηκε ευρετήριο!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Κατατμήθηκε κατά:" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Υπό κατατμήθηκε κατά:" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Μέγεθος δεδομένων" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Μέγεθος ευρετηρίου" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition by:" +msgid "Partition table" +msgstr "Κατάτμηση κατά:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Απομάκρυνση κατάτμησης" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Επεξεργασία εμφάνισης" diff --git a/po/en_GB.po b/po/en_GB.po index 868c8cf93e..140c6cb919 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-08-02 20:09+0200\n" "Last-Translator: Marek Tomaštík \n" "Language-Team: English (United Kingdom) " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Save as file" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Reset" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Select All" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Missing value in the form!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Select at least one of the options!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Please enter a valid number!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Please enter a valid length!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Add index" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Edit Index" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Add %s column(s) to index" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Create routine" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Create routine" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "Columns enclosed with:" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "Add %s column(s) to index" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "You have to add at least one column." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "in query" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Affected rows:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL query:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Values" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "The host name is empty!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "The user name is empty!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "The password is empty!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Removing Selected Users" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Close" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "The number of pages created." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "The profile has been updated." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "The row has been deleted." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Other" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Connections / Processes" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Local monitor configuration incompatible!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1227,165 +1233,165 @@ msgstr "" "likely that your current configuration will not work any more. Please reset " "your configuration to default in the Settings menu." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Query cache efficiency" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Query cache usage" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Query cache used" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "System CPU Usage" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "System memory" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "System swap" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Average load" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Total memory" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Cached memory" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Buffered memory" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Free memory" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Used memory" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Total Swap" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Cached Swap" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Used Swap" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Free Swap" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes sent" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bytes received" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Connections" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Processes" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Questions" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Traffic" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Settings" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Add chart to grid" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Please add at least one variable to the series!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1397,47 +1403,47 @@ msgstr "Please add at least one variable to the series!" msgid "None" msgstr "None" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Resume monitor" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Pause monitor" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log and slow_query_log are enabled." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log is enabled." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log is enabled." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log and general_log are disabled." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output is not set to TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output is set to TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1448,12 +1454,12 @@ msgstr "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time is set to %d second(s)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1462,30 +1468,30 @@ msgstr "" "restart:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Set log_output to %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Enable %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Disable %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Set long_query_time to %d seconds." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1493,57 +1499,57 @@ msgstr "" "You can't change these variables. Please log in as root or contact your " "database administrator." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Change settings" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Current settings" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Chart title" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Differential" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Divided by %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unit" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "From slow log" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "From general log" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "The database name is not known for this query in the server's logs." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analysing logs" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Analysing & loading logs. This may take a while." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Cancel request" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1553,7 +1559,7 @@ msgstr "" "together. However only the SQL Text is being compared, thus the queries " "other attributes such as start time may differ." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1563,31 +1569,31 @@ msgstr "" "same table are also being grouped together, disregarding of the inserted " "data." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Log data loaded. Queries executed in this time span:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Jump to Log table" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "No data found" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "Log analysed, but no data found in this time span." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analysing…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Explain output" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1595,7 +1601,7 @@ msgstr "Explain output" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1605,58 +1611,58 @@ msgstr "Status" msgid "Time" msgstr "Time" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Total time:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profiling results" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Table" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Chart" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Log table filter options" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filter" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filter queries by word/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Group queries, ignoring variable data in WHERE clauses" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Sum of grouped rows:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Loading logs" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Monitor refresh failed" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1666,25 +1672,25 @@ msgstr "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Reload page" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Affected rows:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Failed parsing config file. It doesn't seem to be valid JSON code." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Failed building chart grid with imported config. Resetting to default config…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1694,61 +1700,61 @@ msgstr "" msgid "Import" msgstr "Import" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Import monitor configuration" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Please select the file you want to import." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "No files available on server for import!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analyse Query" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Advisor system" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Possible performance issues" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Issue" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Recommendation" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Rule details" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Justification" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Used variable / formula" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1759,73 +1765,73 @@ msgstr "" msgid "Cancel" msgstr "Cancel" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Change settings" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Apply" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Loading…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Request Aborted!!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Processing Request" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Request Aborted!!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Error in processing request:" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Error code: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Error text: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "No databases selected." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Dropping Column" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Add primary key" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1835,65 +1841,65 @@ msgstr "Add primary key" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Click to dismiss this notification" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Renaming Databases" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Copying Database" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Changing Charset" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Disable foreign key checks" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Failed to fetch headers" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Searching" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Hide search results" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Show search results" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Browsing" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Deleting" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "The definition of a stored function must contain a RETURN statement!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1910,43 +1916,43 @@ msgstr "The definition of a stored function must contain a RETURN statement!" msgid "Export" msgstr "Export" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET editor" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Values for column %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Values for a new column" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Enter each value in a separate field." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Add %d value(s)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Note: If the file contains multiple tables, they will be combined into one." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Hide query box" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Show query box" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1960,7 +1966,7 @@ msgstr "Show query box" msgid "Edit" msgstr "Edit" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1972,96 +1978,96 @@ msgstr "Edit" msgid "Delete" msgstr "Delete" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d is not valid row number." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Browse foreign values" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Variable" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "No column selected." -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Search in database" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Free memory" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Contribute" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Add primary key" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "A primary key has been added on %s." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Tracking report" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2069,250 +2075,251 @@ msgstr "" msgid "End of step" msgstr "End of line" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Done" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "No databases selected." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "The following queries have been executed:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table:" msgid "Create the following table" msgstr "Add privileges on the following table:" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "No databases selected." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Save" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Hide search criteria" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "Table Search" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Column names: " -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Column names: " -#: js/messages.php:402 +#: js/messages.php:403 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Maximum tables" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Maximum tables" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Hide find and replace criteria" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Show find and replace criteria" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Each point represents a data row." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Hovering over a point will show its label." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "To zoom in, select a section of the plot with the mouse." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Click reset zoom button to come back to original state." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Click a data point to view and possibly edit the data row." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "The plot can be resized by dragging it along the bottom right corner." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Select two columns" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Select two different columns" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Data point content" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Copy" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Point" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Linestring" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Inner Ring" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Outer ring:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Do you want to copy encryption key?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Encryption key" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Please select the primary key or a unique key!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Choose column to display" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2320,93 +2327,93 @@ msgstr "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Page name" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "Select page" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "Select page" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Free pages" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Select page" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Unit" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Please choose a page to edit" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "Please enter a valid number!" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Edit or export relational schema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Modifications have been saved" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Add an option for column \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d object(s) created." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Submit" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Press escape to cancel editing." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2414,15 +2421,15 @@ msgstr "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Drag to reorder." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Click to sort results by this column." -#: js/messages.php:486 +#: js/messages.php:487 #, fuzzy #| msgid "" #| "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC." @@ -2435,26 +2442,26 @@ msgstr "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Control+Click to remove column from ORDER BY clause" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Click to mark/unmark." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Double-click to copy column name." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Click the drop-down arrow
to toggle column's visibility." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Show all" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2462,160 +2469,160 @@ msgstr "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Original string" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Cancel" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Aborted" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import defaults" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Log file threshold" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "You can also edit most values
by double-clicking directly on them." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "You can also edit most values
by clicking directly on them." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Go to link:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Copy column name." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Right-click the column name to copy it to your clipboard." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generate" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "More" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Show Panel" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Hide Panel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Show hidden navigation tree items." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main panel" msgid "Link with main panel" msgstr "Customise main panel" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "Customise main panel" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tables" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Views" msgid "views" msgstr "Views" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Procedures" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "event" msgid "events" msgstr "event" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Functions" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "The requested page was not found in the history, it may have expired." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2625,32 +2632,32 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "up to date" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Create view" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Send error reports" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Submit Error Report" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2658,19 +2665,19 @@ msgstr "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Change Report Settings" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Show Report Details" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2678,7 +2685,7 @@ msgstr "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2687,432 +2694,432 @@ msgstr "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignore" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Show this query here again" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Do you really want to delete the search \"%s\"?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Executed queries" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Table comments" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Hide search results" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Prev" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Today" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "January" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "February" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "March" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "April" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "May" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "June" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "July" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "August" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "September" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "October" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "November" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dec" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Monday" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Friday" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Hour" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minute" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Second" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Use text field" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "Please enter a valid number!" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Please enter a valid number!" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "Please enter a valid number!" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "Please enter a valid number!" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Please enter a valid number!" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Please enter a valid number!" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Please enter a valid length!" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "Please enter a valid number!" -#: js/messages.php:785 +#: js/messages.php:786 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "Please enter a valid number!" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Please enter a valid length!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "Please enter a valid number!" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "Please enter a valid number!" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Please enter a valid number!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4042,7 +4049,7 @@ msgstr "Indexes" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Action" @@ -4053,8 +4060,8 @@ msgid "Keyname" msgstr "Keyname" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4086,9 +4093,9 @@ msgstr "Collation" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Comment" @@ -4103,14 +4110,14 @@ msgstr "Index %s has been dropped." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Drop" @@ -4222,7 +4229,7 @@ msgstr "Tracking" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4907,23 +4914,29 @@ msgstr "A collection of polygons" msgid "A collection of geometry objects of any type" msgstr "A collection of geometry objects of any type" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numeric" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Date and time" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "String" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -5081,7 +5094,7 @@ msgstr "Use this value" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rows" @@ -5166,7 +5179,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Name" @@ -8323,7 +8336,8 @@ msgid "No data to display" msgstr "No data to display" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8366,33 +8380,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "The column name '%s' is a MySQL reserved keyword." msgstr[1] "The column name '%s' is a MySQL reserved keyword." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "No column selected." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "The columns have been moved successfully." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Query error" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Table %1$s has been altered successfully." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Query error" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Change" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8403,20 +8418,20 @@ msgstr "Change" msgid "Index" msgstr "Index" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Distinct values" @@ -9871,7 +9886,7 @@ msgstr "New" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Views" @@ -10334,32 +10349,32 @@ msgid "Delete the table (DROP)" msgstr "Delete the table (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analyse" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Check" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimise" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Rebuild" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Repair" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10379,6 +10394,7 @@ msgid "Partition %s" msgstr "Partition %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Remove partitioning" @@ -10594,7 +10610,7 @@ msgstr "Data dump options" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Dumping data for table" @@ -10618,21 +10634,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Table structure for table" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Structure for view" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Stand-in structure for view" @@ -10722,7 +10738,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Data:" @@ -10830,7 +10846,7 @@ msgid "Data creation options" msgstr "Data creation options" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Truncate table before insert" @@ -10918,7 +10934,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10986,24 +11002,24 @@ msgstr "AUTO_INCREMENT for dumped tables" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT for table" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structure for view %s exported as a table" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Error reading data:" @@ -15260,7 +15276,7 @@ msgid "Pick from Central Columns" msgstr "Remove column(s)" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15276,92 +15292,92 @@ msgstr "first" msgid "after %s" msgstr "after %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "partitioned" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Values for column %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Partition %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "partitioned" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "partitioned" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Partition %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Value" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "partitioned" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Engines" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Data home directory" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Save directory" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "Affected rows:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Browse" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "Table Search" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -16162,7 +16178,7 @@ msgid "at beginning of table" msgstr "At Beginning of Table" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16170,28 +16186,47 @@ msgstr "Partition %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "No index defined!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "partitioned" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "partitioned" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Row length" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Row length" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "partitioned" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Remove partitioning" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Edit view" diff --git a/po/eo.po b/po/eo.po index db57dd9c2c..22c0e28324 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-01-01 17:51+0200\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "" -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1090,155 +1094,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1250,47 +1254,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1298,136 +1302,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1435,7 +1439,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1445,82 +1449,82 @@ msgstr "" msgid "Time" msgstr "Tempo" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1530,59 +1534,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1593,59 +1597,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1655,55 +1659,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1720,42 +1724,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1769,7 +1773,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1781,556 +1785,557 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2338,437 +2343,437 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:604 +msgid "Show arguments" +msgstr "" + +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "hodiaŭ" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "januaro" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "februaro" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "marto" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "aprilo" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "majo" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "junio" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "julio" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "aŭgusto" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "septembro" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "oktobro" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "novembro" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "decembro" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "aŭg" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "dec" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Dimanĉo" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Lundo" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Mardo" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Merkredo" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Ĵaŭdo" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Vendredo" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Mard" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Merk" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Ĵaŭ" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Ĵa" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3615,7 +3620,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "" @@ -3626,8 +3631,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3659,9 +3664,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3676,14 +3681,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "" @@ -3793,7 +3798,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4415,23 +4420,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4579,7 +4590,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "" @@ -4658,7 +4669,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7435,7 +7446,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7469,32 +7481,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7505,20 +7518,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -8851,7 +8864,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9285,32 +9298,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9328,6 +9341,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9532,7 +9546,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9556,21 +9570,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9660,7 +9674,7 @@ msgid "Database:" msgstr "Datumbazo:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9752,7 +9766,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9822,7 +9836,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9887,24 +9901,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13690,7 +13704,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13704,64 +13718,64 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14463,26 +14477,39 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +msgid "Partition table" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +msgid "Edit partitioning" +msgstr "" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/es.po b/po/es.po index 69357d8eee..230467f42c 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-16 13:02+0200\n" "Last-Translator: Ronnie Simon \n" "Language-Team: Spanish " -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1006,161 +1012,161 @@ msgstr "" "¿Seguro que desea cambiar todas las columnas de intercalaciones y convertir " "los datos?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Guardar y Cerrar" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Reiniciar" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Reiniciar Todo" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "¡Falta un valor en el formulario!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "¡Seleccione al menos una de estas opciones!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "¡Introduzca un número válido!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "¡Introduzca una longitud válida!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Agregar índice" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Editar Índice" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Agregar %s columna(s) al índice" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Crear índice de una sola columna" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Crear índice compuesto" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Componer con:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Seleccione la(s) columna(s) para el índice." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Debe agregar al menos una columna." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Previsualizar SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simular consulta" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Filas encontradas:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "consulta SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Valores Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "¡El nombre del servidor está vacío!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "¡El nombre de usuario está vacío!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "¡La contraseña está vacía!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Cerrar" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Plantilla creada." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Plantilla cargada." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Plantilla actualizada." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Plantilla borrada." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Otro" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Conexiones / Procesos" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "¡Configuración local de monitorización incompatible!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1172,158 +1178,158 @@ msgstr "" "monitorización. Es probable que la configuración no funcione. Reinicie la " "configuración a la predeterminada en el menú Configuración." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Eficiencia del caché de consultas" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Uso del caché de consultas" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Caché de consultas utilizado" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Uso de CPU del sistema" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Memoria de sistema" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Intercambio de sistema" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Carga promedio" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memoria caché" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memoria de búfers" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memoria libre" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memoria utilizada" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Intercambio Total" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Intercambio en Caché" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Intercambio Utilizado" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Intercambio Libre" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Conexiones" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Procesos" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" # singular: tabla # plural: tablas -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabla(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Preguntas" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Configuración" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Agregar gráfico a la grilla" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "¡Introduzca una longitud válida!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1335,47 +1341,47 @@ msgstr "¡Introduzca una longitud válida!" msgid "None" msgstr "Ninguna" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Reanudar monitorización" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Pausar monitorización" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Iniciar refresco automático" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Detener refresco automático" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "«general_log» y «slow_query_log» activos." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "«general_log» activo." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "«slow_query_log» activo." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "«slow_query_log» y «general_log» desactivados." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "«log_output» no está definido como TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "«log_output» está definido como TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1386,12 +1392,12 @@ msgstr "" "más de %d segundos. Es recomendable configurar «long_query_time» entre 0 y 2 " "segundos dependiendo del equipo." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "«long_query_time» está configurado a %d segundo(s)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1400,30 +1406,30 @@ msgstr "" "valores predeterminados al reiniciar el servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Habilitar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Deshabilitar %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir «long_query_time» a %d segundos." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1431,59 +1437,59 @@ msgstr "" "No posee permisos para cambiar estas variables. Inicie sesión con la cuenta " "root o contacte a su administrador de base de datos." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Cambiar configuraciones" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Título del gráfico" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unidad" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Del registro de consultas lentas" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Del registro general" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Se desconoce el nombre de la base de datos para esta consulta en los " "registros del servidor." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analizando registros" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Analizando y cargando registros. Esto puede demorar." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Cancelar petición" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1494,7 +1500,7 @@ msgstr "" "agrupar, por lo que los demás atributos de las consultas como el tiempo de " "inicio podría diferir." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1503,34 +1509,34 @@ msgstr "" "Dado que se eligió agrupar consultas INSERT, las consultas INSERT a la misma " "tabla también fueron agrupadas sin importar los datos agregados." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Los datos del registros fueron cargados. Consultas ejecutadas en este " "período de tiempo:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Saltar a la tabla de registros" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "No se encontraron datos" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Registros analizados, pero no se encontraron datos en este período de tiempo." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analizando…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Explicar salida" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1538,7 +1544,7 @@ msgstr "Explicar salida" msgid "Status" msgstr "Estado actual" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1548,58 +1554,58 @@ msgstr "Estado actual" msgid "Time" msgstr "Tiempo" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Tiempo total:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Perfilando resultados" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabla" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Gráfico" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Opciones de filtros para tablas de registros" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtrar" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtrar consultas por palabra/expresión regular:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar consultas ignorando datos variables en sentencias WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Suma de filas agrupadas:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Cargando registros" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Falló la actualización del monitorizador" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1609,28 +1615,28 @@ msgstr "" "es probablemente porque expiró la sesión. Cargar la página nuevamente y " "volver a introducir sus credenciales debería ayudar." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Cargar página nuevamente" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Filas afectadas:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "No se pudo analizar el archivo de configuración. No parece ser código JSON " "válido." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "No se pudo crear la grilla de gráficos con la configuración importada. " "Reiniciando a configuración predeterminada…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1640,59 +1646,59 @@ msgstr "" msgid "Import" msgstr "Importar" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importar configuración" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Seleccione el archivo que desea importar." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "¡No existen archivos disponibles en el servidor para importar!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analizar Consulta" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Sistema de consejos" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Posibles problemas de performance" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problema" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Recomendación" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Detalles de la regla" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Justificación" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Variable/fórmula utilizada" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Prueba" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Formato SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1703,59 +1709,59 @@ msgstr "Formato SQL…" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Ajustes de página relacionada" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Cargando…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "¡¡Petición Abortada!!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Procesando petición" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "¡¡Petición Fallida!!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Error al procesar la petición" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Código de error: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Texto de error: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "No se seleccionaron bases de datos." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Eliminando columna" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Añadiendo clave primaria" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1765,56 +1771,56 @@ msgstr "Añadiendo clave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Pulse para descartar esta notificación" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Renombrando bases de datos" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Copiando base de datos" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Cambiando el juego de caracteres" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Habilite la revisión de las claves foráneas" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "No se pudo obtener la cantidad de filas real." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Buscando" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Ocultar resultados de búsqueda" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Mostrar resultados de búsqueda" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Examinando" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Borrando" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "¡La definición de una función almacenada debe contener una sentencia RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1831,43 +1837,43 @@ msgstr "" msgid "Export" msgstr "Exportar" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Valores para la columna %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Valores para una nueva columna" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Introducir cada valor en un campo separado." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Agregar %d valor(es)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: si la fila contiene múltiples tablas, van a ser combinadas en una." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Ocultar ventana de consultas SQL" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1881,7 +1887,7 @@ msgstr "Mostrar ventana de consultas SQL" msgid "Edit" msgstr "Editar" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1893,41 +1899,41 @@ msgstr "Editar" msgid "Delete" msgstr "Borrar" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d no es un número de fila válido." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Sin consultas almacenadas automáticamente" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variable %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Elegir" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Selección de columnas" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Buscar en esta lista" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1937,15 +1943,15 @@ msgstr "" "columnas para la base de datos %s tenga columnas que no estén en la tabla " "actual." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Más" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "¿Está seguro?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1953,51 +1959,51 @@ msgstr "" "Esta acción puede cambiar la definición de algunas columnas.
¿Está " "seguro que desea continuar?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Continuar" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Agregar clave primaria" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Se agregó la clave primaria." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Llevándolo al siguiente paso…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Se completó el primer paso de la normalización para la tabla '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Final de los pasos" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Segundo paso de normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Terminado" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Confirmar dependencias parciales" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Las dependencias parciales seleccionadas son:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2005,21 +2011,21 @@ msgstr "" "Nota: «a, b -> d, f» implica que los valores combinados de las columnas a y " "b pueden determinar el valor de las columnas d y f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "¡No se seleccionaron dependencias parciales!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostrar las posibles dependencias parciales basadas en los datos actuales de " "la tabla" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Esconder lista de dependencias parciales" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2027,166 +2033,167 @@ msgstr "" "¡Paciencia! Puede tomar unos segundos, dependiendo del tamaño de los datos y " "la cantidad de columnas de la tabla." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Paso" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Se realizarán las siguientes acciones:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "Eliminar columnas %s de la tabla %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Crear la siguiente tabla" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Tercer paso de la normalización (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Confirmar dependencias transitivas" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Las dependencias seleccionadas son:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "¡No se seleccionaron dependencias!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Guardar" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Ocultar criterio de búsqueda" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Búsqueda por rango" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Máximo de las columnas:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Mínimo de las columnas:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Ocultar criterio de búsqueda y reemplazo" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Mostrar criterio de búsqueda y reemplazo" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Cada punto representa una fila de datos." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Ubicar el cursor sobre un punto mostrará su etiqueta." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Para ampliar, seleccione el gráfico." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Pulse el botón de restaurar ampliación para volver al estado original." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Pulse en un punto de datos para ver y posiblemente editar la fila de datos." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "El gráfico puede redimensionarse arrastrando la esquina inferior derecha." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Seleccionar dos columnas" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Seleccionar dos columnas distintas" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Contenido del punto de datos" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Copiar" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punto" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Cadena de líneas" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometría" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Círculo interior" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Círculo exterior" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "¿Desea copiar la llave de cifrado?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Llave de cifrado" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2194,24 +2201,24 @@ msgstr "" "Indica que ha realizado cambios en esta página; se le pedirá confirmación " "antes de abandonar los cambios" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "¡Seleccione la clave primaria o una clave única!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Elegir la columna a mostrar" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2219,77 +2226,77 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Nombre de página" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Guardar página" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Guardar página como" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir página" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Borrar página" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sin título" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Seleccione una página para continuar" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Introduzca un nombre de página válido" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "¿Desea guardar los cambios en la página actual?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Página eliminada exitosamente" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Añadir una opción para la columna «%s»." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) creado(s)." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Enviar" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Presione la tecla de escape para cancelar la edición." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2297,15 +2304,15 @@ msgstr "" "Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta " "página sin guardar los datos?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Arrastrar para reordenar." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Pulse para ordenar los resultados según esta columna." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2315,28 +2322,28 @@ msgstr "" "intercambiar entre ASC/DESC.
- Pulsar Ctrl+Click o Alt+Click (Mac: Shift" "+Option+Click) para eliminar la columna de la cláusula «ORDER BY»" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Pulsar para marcar/desmarcar." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Haga doble click para copiar el nombre de la columna." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Pulsa la flecha de la lista desplegable
para conmutar la visibilidad " "de la columna." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2345,13 +2352,13 @@ msgstr "" "la edición de la grilla y los enlaces de copiado, eliminación y edición " "pueden no funcionar luego de guardar." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Introduzca una cadena hexadecimal válida. Los carácteres válidos son 0-9 y A-" "F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2359,132 +2366,132 @@ msgstr "" "¿Realmente desea ver todas las filas? Una tabla grande podría afectar el " "funcionamiento del navegador." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Longitud original" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "cancelar" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Éxito" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Estado de la importación" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Suelte aquí los archivos" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Seleccionar base de datos primero" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "También puede editar la mayoría de los valores
con un pulsado doble " "directamente en su contenido." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Puede editar la mayoría de los valores
pulsando directamente en su " "contenido." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Ir al enlace:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Copie el nombre de la columna." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Haga click con el botón derecho sobre la columna para copiarla en el " "portapapeles." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generar" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Más" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Mostrar panel" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Ocultar panel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Mostrar los elementos escondidos del árbol de navegación." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Enlace al panel principal" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Deshacer enlace en el panel principal" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Para filtrar todas las bases de datos en servidor, presione Enter después de " "un término de búsqueda" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Para filtrar los %s en base de datos, presione Enter después de un término " "de búsqueda" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "mesas" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "Vistas" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "procedimientos" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "eventos" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "Funciones" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La página solicitada no se encontró en el historial, puede haber expirado." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2494,43 +2501,43 @@ msgstr "" "la obtenga. La versión más reciente es %s, y existe desde el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "actualizada" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Crear vista" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Enviar informe de error" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Enviar informe de error" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Ocurrió un error fatal en JavaScript. ¿Desearía enviar un reporte de error?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Cambiar configuraciones del informe" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Mostrar detalles del informe" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2538,7 +2545,7 @@ msgstr "" "¡La exportación está incompleta debido a un límite en el tiempo de ejecución " "demasiado bajo a nivel de PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2548,59 +2555,59 @@ msgstr "" "enviarlo se podrían ignorar algunos campos debido a la configuración " "«max_input_vars» de PHP." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "¡Se detectaron algunos errores en el servidor!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Revise el pie de esta ventana." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignorar todos" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Un momento, se están enviando en este momento debido a su configuración." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "¿Ejecutar esta consulta nuevamente?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "¿Realmente desea eliminar este favorito?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "Ocurrió un error al obtener información de depuración SQL." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas ejecutadas %s veces en %s segundos." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) correcto(s)" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Mostrar argumentos" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Ocultar argumentos" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Tiempo necesario:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2611,331 +2618,331 @@ msgstr "" "podrían no funcionar correctamente. En Safari, ésto puede deberse al \"Modo " "de Navegación Privada\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Hoy" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Enero" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Febrero" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Marzo" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Abril" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mayo" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Junio" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Julio" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Agosto" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Septiembre" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Octubre" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Noviembre" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dic" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Lunes" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Viernes" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Hora" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minuto" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Segundo" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Este campo es requerido" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Corrige este campo" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Ingrese un correo electrónico válido" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Ingrese una URL válida" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Ingrese una fecha válida" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Ingrese una fecha ( ISO ) válida" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Ingrese un número válido" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Ingrese un número de tarjeta de crédito valido" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Ingrese solo dígitos" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Ingrese el mismo valor de nuevo" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Ingrese no más de {0} caracteres" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Ingrese al menos {0} caracteres" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Ingrese un valor entre {0} y {1} caracteres de largo" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Ingrese un valor entre {0} y {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Ingrese un valor menor o igual a {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Ingrese un valor mayor o igual a {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Ingrese una fecha u hora válida" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Ingrese una entrada HEX válida" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3804,7 +3811,7 @@ msgstr "Índices" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Acción" @@ -3815,8 +3822,8 @@ msgid "Keyname" msgstr "Nombre de la clave" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3848,9 +3855,9 @@ msgstr "Cotejamiento" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Comentario" @@ -3865,14 +3872,14 @@ msgstr "El índice %s ha sido eliminado." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Eliminar" @@ -3986,7 +3993,7 @@ msgstr "Seguimiento" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4684,23 +4691,29 @@ 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:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numérico" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Fecha y marca temporal" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Cadena" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -4854,7 +4867,7 @@ msgstr "Use este valor" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Filas" @@ -4937,7 +4950,7 @@ msgstr "No" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nombre" @@ -8062,7 +8075,8 @@ msgid "No data to display" msgstr "No hay datos para mostrar" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8096,33 +8110,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "El nombre «%s» es una palabra clave reservada de MySQL." msgstr[1] "Los nombres «%s» es una palabra clave reservada de MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "No se seleccionaron columnas." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Las columnas fueron movidas exitosamente." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Errores de consulta" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" "La Tabla %1$s fue modificada exitosamente. Los privilegios se ajustaron." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Errores de consulta" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Cambiar" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8133,20 +8148,20 @@ msgstr "Cambiar" msgid "Index" msgstr "Índice" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Valores distintos" @@ -9577,7 +9592,7 @@ msgstr "Nuevo" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Vistas" @@ -10065,32 +10080,32 @@ msgid "Delete the table (DROP)" msgstr "Borrar la tabla (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analice" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Revise" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimice" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Reconstruya" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Repare" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Truncar" @@ -10108,6 +10123,7 @@ msgid "Partition %s" msgstr "Partición %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Remueva la partición" @@ -10326,7 +10342,7 @@ msgstr "Opciones para volcado de datos" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Volcado de datos para la tabla" @@ -10350,21 +10366,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Estructura de tabla para la tabla" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Estructura para la vista" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Estructura Stand-in para la vista" @@ -10454,7 +10470,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Datos:" @@ -10557,7 +10573,7 @@ msgid "Data creation options" msgstr "Opciones de creación de datos" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Truncar tablas antes de insertar" @@ -10642,7 +10658,7 @@ msgstr "Parece que su base de datos utiliza procedimientos;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" "exportar los alias no podría funcionar correctamente en todos los casos." @@ -10708,24 +10724,24 @@ msgstr "AUTO_INCREMENT de las tablas volcadas" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT de la tabla" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA LA TABLA" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELACIONES PARA LA TABLA" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Parece que su tabla utiliza disparadores («triggers»);" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Estructura para la vista de %s exportada como una tabla" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Error leyendo datos:" @@ -14940,7 +14956,7 @@ msgid "Pick from Central Columns" msgstr "Seleccionar desde las columnas centrales" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Expresión" @@ -14954,92 +14970,92 @@ msgstr "primera" msgid "after %s" msgstr "después de %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Partitioned by:" msgid "Partition by:" msgstr "Dividido por:" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Valores para la columna %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partitions" msgid "Partitions:" msgstr "Particiones" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Sub partitioned by:" msgid "Subpartition by:" msgstr "Sub dividido por:" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Sub partitioned by:" msgid "Subpartitions:" msgstr "Sub dividido por:" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partitions" msgid "Partition" msgstr "Particiones" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Valor" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "particionado" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Motores" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Directorio raíz de los datos" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Directorio de almacenamiento" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Filas encontradas:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "Filter rows" msgid "Min rows" msgstr "Filtrar filas" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Búsqueda de tablas" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -15774,26 +15790,45 @@ msgid "at beginning of table" msgstr "Al comienzo de la tabla" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Particiones" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "¡No se ha definido ningún índice!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Dividido por:" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Sub dividido por:" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Longitud de los datos" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Longitud del índice" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partitioned by:" +msgid "Partition table" +msgstr "Dividido por:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Remueva la partición" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Editar vista" diff --git a/po/et.po b/po/et.po index 6067a7dbba..57f4722544 100644 --- a/po/et.po +++ b/po/et.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" -"PO-Revision-Date: 2015-09-30 10:38+0200\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" +"PO-Revision-Date: 2015-10-01 14:24+0200\n" "Last-Translator: Kristjan Räts \n" "Language-Team: Estonian " "\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 2.5\n" +"X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:30 #, php-format @@ -171,8 +171,8 @@ msgid "Comments" msgstr "Kommentaarid" #: db_datadict.php:156 -#: libraries/controllers/TableStructureController.class.php:952 -#: libraries/controllers/TableStructureController.class.php:957 +#: libraries/controllers/TableStructureController.class.php:1183 +#: libraries/controllers/TableStructureController.class.php:1188 #: libraries/tracking.lib.php:922 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 @@ -180,7 +180,7 @@ msgstr "Kommentaarid" msgid "Primary" msgstr "Primaarne" -#: db_datadict.php:166 js/messages.php:317 libraries/Index.class.php:567 +#: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 libraries/mult_submits.lib.php:403 @@ -204,16 +204,16 @@ msgstr "Primaarne" msgid "No" msgstr "Ei" -#: db_datadict.php:166 js/messages.php:444 libraries/Index.class.php:568 +#: db_datadict.php:166 js/messages.php:445 libraries/Index.class.php:568 #: libraries/Index.class.php:605 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/controllers/TableStructureController.class.php:541 -#: libraries/controllers/TableStructureController.class.php:1203 -#: libraries/controllers/TableStructureController.class.php:1212 -#: libraries/controllers/TableStructureController.class.php:1217 -#: libraries/controllers/TableStructureController.class.php:1222 -#: libraries/controllers/TableStructureController.class.php:1227 +#: libraries/controllers/TableStructureController.class.php:772 +#: libraries/controllers/TableStructureController.class.php:1434 +#: libraries/controllers/TableStructureController.class.php:1443 +#: libraries/controllers/TableStructureController.class.php:1448 +#: libraries/controllers/TableStructureController.class.php:1453 +#: libraries/controllers/TableStructureController.class.php:1458 #: libraries/mult_submits.inc.php:82 libraries/mult_submits.inc.php:195 #: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 #: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 @@ -255,7 +255,7 @@ msgstr "Andmebaasist tabeleid ei leitud." #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:119 -#: templates/database/structure/show_create.phtml:18 +#: templates/database/structure/show_create.phtml:19 msgid "Tables" msgstr "Tabelid" @@ -415,23 +415,23 @@ msgid "Point:" msgstr "Punkt:" #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 -#: gis_data_editor.php:370 js/messages.php:433 +#: gis_data_editor.php:370 js/messages.php:434 msgid "X" msgstr "X" #: gis_data_editor.php:217 gis_data_editor.php:245 gis_data_editor.php:301 -#: gis_data_editor.php:376 js/messages.php:434 +#: gis_data_editor.php:376 js/messages.php:435 msgid "Y" msgstr "Y" #: gis_data_editor.php:239 gis_data_editor.php:295 gis_data_editor.php:368 -#: js/messages.php:436 +#: js/messages.php:437 #, php-format msgid "Point %d" msgstr "Punkt %d" #: gis_data_editor.php:252 gis_data_editor.php:308 gis_data_editor.php:386 -#: js/messages.php:442 +#: js/messages.php:443 msgid "Add a point" msgstr "Lisa punkt" @@ -453,7 +453,7 @@ msgstr "Sisemine ring %d:" msgid "Add a linestring" msgstr "Lisa rea sõne" -#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:443 +#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:444 msgid "Add an inner ring" msgstr "Lisa sisemine ring" @@ -470,7 +470,7 @@ msgstr "Lisa hulktahukas" msgid "Add geometry" msgstr "Lisa geomeetria" -#: gis_data_editor.php:409 js/messages.php:292 +#: gis_data_editor.php:409 js/messages.php:293 #: libraries/DbSearch.class.php:464 libraries/DisplayResults.class.php:1799 #: libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:166 @@ -525,7 +525,7 @@ msgstr "" msgid "Succeeded" msgstr "Õnnestus" -#: import.php:58 js/messages.php:501 +#: import.php:58 js/messages.php:502 msgid "Failed" msgstr "Nurjus" @@ -621,7 +621,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Importimise edenemise laadimine nurjus." -#: import_status.php:112 js/messages.php:378 libraries/Util.class.php:780 +#: import_status.php:112 js/messages.php:379 libraries/Util.class.php:780 #: libraries/export.lib.php:518 #: libraries/plugins/schema/Export_Relation_Schema.class.php:298 #: user_password.php:253 @@ -646,7 +646,7 @@ msgstr "" msgid "General settings" msgstr "Üldised sätted" -#: index.php:191 js/messages.php:525 +#: index.php:191 js/messages.php:526 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:247 msgid "Change password" @@ -949,7 +949,12 @@ msgstr "" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Kas sa soovid tõesti kärpida (TRUNCATE) valitud partitsioone?" -#: js/messages.php:67 +#: js/messages.php:66 +#| msgid "Do you really want to TRUNCATE the selected partition(s)?" +msgid "Do you really want to remove partitioning?" +msgstr "Kas sa tõesti soovid loobuda partitsioneerimisest?" + +#: js/messages.php:68 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -963,15 +968,15 @@ msgstr "" "soovitame pöörduda tagasi vana sortimise juurde ja vaadata nõuandeid " "aadressil " -#: js/messages.php:73 +#: js/messages.php:74 msgid "Garbled Data" msgstr "Seosetud andmed" -#: js/messages.php:75 +#: js/messages.php:76 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Kas sa oled kindel, et soovid vahetada sortimist ja teisendada andmed?" -#: js/messages.php:77 +#: js/messages.php:78 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -987,7 +992,7 @@ msgstr "" "muutmise funktsionaalsust (viit \"Muuda\") selle tabeli struktuuri " "leheküljel." -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -995,161 +1000,161 @@ msgstr "" "Kas sa oled kindel, et soovid vahetada kõikide veergude sortimist ja " "teisendada andmed?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Salvesta ja sule" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Lähtesta" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Lähtesta kõik" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Puuduv väärtus vormis!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Vali valikutest vähemalt üks!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Palun sisesta korrektne number!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Palun sisesta korrektne pikkus!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Lisa indeks" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Muuda indeksit" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Lisa indeksisse %s veerg(u)" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Loo ühe veeru indeks" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Loo mitme veeru indeks" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Kasuta:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Palun vali indeksi veerg(u)." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Pead lisama vähemalt ühe veeru." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQL eelvaade" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simuleeri päringut" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Sobivad read:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL päring:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Y väärtused" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Hostinimi on tühi!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Kasutajanimi on tühi!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Parool on tühi!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Paroolid ei kattu!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Valitud kasutajate kustutamine" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Sulge" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Mall loodi." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Mall on laetud." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Mall on loodud." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Mall on kustutatud." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Muud" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Ühendused / Protsessid" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Kohaliku jälgimise seadistus ei ühildu!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1161,155 +1166,155 @@ msgstr "" "Üldjuhul sinu praegune seadistus enam ei toimi. Palun lähtesta oma seadistus " "vaikimisi väärtustele Sätete menüüst." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Päringu vahemälu kasutegur" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Päringu vahemälu kasutus" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Kasutatud päringu vahemälu" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Süsteemi CPU kasutus" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Süsteemimälu" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Süsteemisaale" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Keskmine koormus" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Kogumälu" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Puhverdatud mälu" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Puhverdatud mälu" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Vaba mälu" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Kasutatud mälu" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Kogu saalimisala" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Puhverdatud saalimisala" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Kasutatud saalimisala" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Kasutamata saalimisala" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Saadetud baidid" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Vastuvõetud baidid" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Ühendused" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Protsessid" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabel(it)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Päringud" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Liiklus" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Sätted" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Lisa diagramm ruudustikku" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Palun lisa seeriasse vähemalt üks muutuja!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1321,47 +1326,47 @@ msgstr "Palun lisa seeriasse vähemalt üks muutuja!" msgid "None" msgstr "Puudub" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Jätka jälgimist" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Peata jälgimine" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Käivita automaatne värskendamine" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Lõpeta automaatne värskendamine" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log ja slow_query_log on lubatud." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log on lubatud." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log on lubatud." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ja general_log on keelatud." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output ei ole TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output väärtuseks on määratud TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1372,12 +1377,12 @@ msgstr "" "jaoks kulub vähemalt %d sekundit. Sõltuvalt sinu süsteemist on soovitatav " "long_query_time väärtuseks seada 0-2 sekundit." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time väärtuseks on määratud %d sekund(it)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1386,30 +1391,30 @@ msgstr "" "vaikimisi olekusse:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Määra log_output väärtuseks %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Luba %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Keela %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Muuda long_query_time väärtuseks %d sekundit." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1417,57 +1422,57 @@ msgstr "" "Sa ei saa neid muutujaid muuta. Logi sisse kasutajana 'root' või võta " "ühendust oma andmebaasi administraatoriga." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Muuda sätteid" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Diagrammi pealkiri" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Eraldaja" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Jagatud %s-ga" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Ühik" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Aeglasest logist" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Üldisest logist" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "See päring ei leidnud serveri logidest andmebaasi nime." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Logide analüüsimine" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Logide analüüsimine ja laadimine. See võib võtta natuke aega." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Loobu taotlusest" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1477,7 +1482,7 @@ msgstr "" "kasutatakse rühmitamise kriteeriumina ainult SQL päringut, seega päringute " "atribuudid (nt. algusaeg) võivad olla erinevad." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1486,32 +1491,32 @@ msgstr "" "Kuniks valitud on INSERT päringute rühmitamine, rühmitatakse kokku INSERT " "päringud samasse tabelisse, sõltumata lisatud andmetest." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Logi andmed on laetud. Päringud sooritatakse selle ajavahemiku jooksul:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Mine logi tabelisse" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Andmeid ei leitud" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "Logi on analüüsitud, kuid sellest ajavahemikust andmeid ei leitud." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analüüsimine…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Selgita väljundit" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1519,7 +1524,7 @@ msgstr "Selgita väljundit" msgid "Status" msgstr "Olek" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1529,58 +1534,58 @@ msgstr "Olek" msgid "Time" msgstr "Aeg" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Aeg kokku:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profileerimise tulemused" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Diagramm" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Logi tabeli filtri valikud" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filter" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtreeri päringuid sõna/reg.avaldise alusel:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Rühmita päringud, ignoreerides WHERE klauslite muutuja andmeid" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Rühmitatud ridade summa:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Kokku:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Logide laadimine" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Jälgija värskendamine ebaõnnestus" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1589,27 +1594,27 @@ msgstr "" "Uute diagrammi andmete taotlemisel naases server vale vastusega. Enamasti on " "selle põhjuseks aegunud seanss. Lae leht uuesti ja logi sisse." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Lae leht uuesti" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Mõjutatud read:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Seadistusfaili parsimine ebaõnnestus. Tundub, et see pole õige JSON kood." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Imporditud seadistusega diagrammi ruudustiku loomine ebaõnnestus. " "Lähtestamine vaikimisi seadistusse…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1619,59 +1624,59 @@ msgstr "" msgid "Import" msgstr "Impordi" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Impordi jälgimise seadistus" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Palun vali imporditav fail." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Importimiseks ei ole serveris faile!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analüüsi päringut" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Kontrollsüsteem" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Võimalikud jõudlusprobleemid" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Probleem" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Soovitus" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Reegli detailid" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Põhjendus" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Kasutatud muutuja / valem" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Testi" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "SQL vormindamine…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1682,59 +1687,59 @@ msgstr "SQL vormindamine…" msgid "Cancel" msgstr "Katkesta" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Lehega seonduvad sätted" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Rakenda" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Laadimine…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Päring katkestatud!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Töödeldakse taotlust" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Päring nurjus!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Taotluse töötlemisel esines viga" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Vea kood: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Vea tekst: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Ühtegi andmebaasi ei ole valitud." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Kustutatakse veergu" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Lisatakse primaarvõtit" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1744,55 +1749,55 @@ msgstr "Lisatakse primaarvõtit" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Selle teate sulgemiseks kliki sellel" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Andmebaase nimetatakse ümber" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Andmebaasi kopeeritakse" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Märgitabeli muutmine" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Luba võõrvõtme(te) kontrollid" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Ridade tegeliku arvu ei suudetud hankida." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Otsimine" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Peida otsingu tulemused" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Näita otsingu tulemusi" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Vaatamine" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Kustutamine" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1809,42 +1814,42 @@ msgstr "Salvestatud funktsioon peab sisaldama RETURN käsku!" msgid "Export" msgstr "Ekspordi" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET toimeti" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "%s veeru väärtused" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Uue veeru väärtused" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Sisesta iga väärtus eraldi väljale." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Lisa %d väärtus(t)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Märkus: Kui fail sisaldab mitut tabelit, siis need liidetakse kokku." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Peida päringu kast" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Näita päringu kasti" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1858,7 +1863,7 @@ msgstr "Näita päringu kasti" msgid "Edit" msgstr "Muuda" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1870,41 +1875,41 @@ msgstr "Muuda" msgid "Delete" msgstr "Kustuta" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d ei ole õige reanumber." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Automaatselt salvestatud päringuid ei ole" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Muutuja %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Vali" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Veeru valija" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Otsi sellest loendist" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1913,15 +1918,15 @@ msgstr "" "Keskne loend ei sisalda veerge. Palun kontrolli, et andmebaasi %s keskne " "veergude loend sisaldaks veerge, mis puuduvad aktiivsest tabelist." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Vaata lisaks" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Oled sa kindel?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1929,51 +1934,51 @@ msgstr "" "See tulemusel võivad muutuda mõnede veergude kirjeldused.
Kas sa oled " "kindel, et jätkata?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Jätka" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Lisa primaarvõti" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Primaarvõti lisatud." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Viiakse sind järgmisele sammule…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Tabeli \"%s\" normaliseerimise esimene samm on lõpetatud." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Sammu lõpp" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Normaliseeriminse teine samm (2NK)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Valmis" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Kinnita osalised sõltuvused" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Valitud osalised sõltuvused on järgnevad:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1981,21 +1986,21 @@ msgstr "" "Märkus: a, b -> d, f kaasab väärtused veergudest a ja b, mis kombineeritult " "määravad väärtused veergudes d ja f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Ühtegi osalist sõltuvust ei ole valitud!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Kuva mulle võimalikud osalised sõltuvused vastavalt tabelis olevatele " "andmetele" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Peida osaliste sõltuvuste nimekiri" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2003,165 +2008,166 @@ msgstr "" "Palun oota! See võib võtta aega mõned sekundid olenevalt andmete suurused ja " "tabeli veergude arvust." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Samm" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Teostatakse järgnevad päringud:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "Kustuta (DROP) veerud %s tabelist %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Loo järgmine tabel" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Normaliseerimise kolmas samm (3NK)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Kinnita transitiivsed sõltuvused" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Valitud sõltuvused on järgnevad:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Ühtegi sõltuvust ei ole valitud!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvesta" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Peida otsingu kriteerium" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Näita otsingu kriteeriumi" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Vahemiku otsing" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Veeru maksimum:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Veeru miinimum:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Väikseim väärtus:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Suurim väärtus:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Peida 'leia ja asenda' kriteerium" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Kuva 'leia ja asenda' kriteeriumi" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Iga punkt tähendab andmete rida." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Kursori üleliigutamisel näitab punkt selle nime." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Vali graafiku suumitav ala hiirega." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Algoleku taastamiseks vajuta suurenduse lähtestamise nuppu." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Kliki andmepunktil, et vaadata ja vajadusel muuta andmete rida." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Diagrammi suurust saab muuta, kui lohistada seda alumist paremat nurkapidi." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Vali kaks veergu" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Vali kaks erinevat veergu" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Andmepunkti sisu" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopeeri" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punkt" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Rea sõne" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Hulktahukas" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geomeetria" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Sisemine ring" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Välimine ring" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Kas sa soovid kopeerida krüpteerimisvõtme?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Krüpteerimisvõti" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2169,24 +2175,24 @@ msgstr "" "Näitab, et lehel on tehtud muudatusi; muudatustest loobumisel küsitakse su " "käest kinnitust" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Vali osutatud võti" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Vali võõrvõti" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Palun vali primaarvõti või unikaalne nimi!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Vali veerg, mida näidata" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2194,77 +2200,77 @@ msgstr "" "Sa ei ole muudatusi salvestanud. Kui sa neid ei salvesta, siis need lähevad " "kaotsi. Kas soovid jätkata?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Lehe nimi" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salvesta leht" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salvesta leht nimega" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ava lehe" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Kustuta leht" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetu" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Palun vali jätkamiseks leht" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Palun sisesta korrektne lehe nimi" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Kas sa soovid salvestada muudatused sellel leheküljel?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Lehekülje kustutamine õnnestus" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Ekspordi seosteskeem" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Muutused on salvestatud" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisa säte veerule \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "Loodi %d objekt(i)." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Saada" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Muutmisest loobumiseks vajuta ESC." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2272,15 +2278,15 @@ msgstr "" "Sa muutsid mõningaid andmed ja neid pole veel salvestatud. Oled kindel, et " "soovid enne andmete salvestamist sellelt lehelt lahkuda?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Järjekorra muutmiseks lohista." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Klõpsa selle veeru järgi sortimiseks." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2290,26 +2296,26 @@ msgstr "" "režiimi.
- Ctrl+klõps või Alt+klõps (Mac: Shift+Option+klõps) eemaldab " "veeru ORDER BY klauslist" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Klõpsa valimiseks/mittevalimiseks." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Veeru nime kopeerimiseks tee sellel topeltklõps." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Näita kõiki" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2318,12 +2324,12 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud " "funktsionaalsus ei pruugi pärast salvestamist toimida." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Palun sisesta korrektne kuueteistkümnend sõne. Lubatud märgid on 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2331,124 +2337,124 @@ msgstr "" "Kas sa soovid tõesti näha kõiki ridu? Suur tabel nagu see võib põhjustada " "krahhi lehitsejas." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Algne pikkus" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "katkesta" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Katkestatud" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Õnnestus" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Impordi olek" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Kukuta failid siia" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Vali esmalt andmebaas" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Sa saad ka muuta enamikke väärtuseid,
kui teed nende sisul topeltkliki." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "Sa saad ka muuta enamikke väärtuseid,
kui klikid nende peal." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Mine lingile:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Kopeeri veeru nimi." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Rohkem" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Paneeli kuvamine" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Peida paneel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Kuva peidetud navigeerimispaneeli elemendid." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Lingi peapaneeli" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Kustuta link peapaneeli" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Kõigi serveris olevate andmebaaside filtreerimiseks vajuta otsingutermini " "järel Enterit" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "Andmebaasis kõigi %s filtreerimiseks vajuta otsingutermini järel Enter" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "tabelid" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "vaated" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "toimingud" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "sündmused" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funktsioonid" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "Valitud lehte ei leitud ajaloost, see võib olla aegunud." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2458,42 +2464,42 @@ msgstr "" "Uusim versioon on %s, välja antud %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", viimane stabiilne versioon:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "ajakohane" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Loo vaade" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Saada vearaport" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Saada vearaport" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Saatuslik JavaScripti viga; kas sa soovid saata vearaporti?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Muuda raporti sätteid" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Kuva raporti detailid" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2501,7 +2507,7 @@ msgstr "" "Su eksport on mittetäielik, sest PHP skripti töötamiseks lubatud aeg on " "liiga väike!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2510,58 +2516,58 @@ msgstr "" "Hoiatus: sellel lehel oleval vormil on enam kui %d välja. Vormi saatmisel " "võidakse mõne välja sisu eirata tänu PHP sättele max_input_vars." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Server tuvastas mõned vead!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Palun vaata selle akna alumisse serva." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignoreeri kõiki" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Palun oota, sinu seadistust saadetakse hetkel." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Kas käivitada see päring uuesti?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Kas sa soovid tõesti kustutada selle järjehoidja?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "SQL silumisinfo hankimisel esines vigu." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s päringut käivitati %s korda %s sekundiga." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "edastati %s argument(i)" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Kuva argumendid" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Peida argumendid" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Aega kulus:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2572,331 +2578,331 @@ msgstr "" "töötada. Safaris põhjustab seda tavaliselt \"Privaartrežiimis lehitsemine" "\" (\"Private Mode Browsing\")." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Eelmine" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Täna" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Jaanuar" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Veebruar" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Märts" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Aprill" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mai" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Juuni" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Juuli" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "August" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "September" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Oktoober" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "November" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dets" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Pühapäev" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Esmaspäev" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Teisipäev" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Kolmapäev" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Neljapäev" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Reede" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Laupäev" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "E" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "N" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "R" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "L" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Näd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "kalender-kuu-aasta" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "puudub" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Tund" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minut" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekund" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "See väli on kohustuslik" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Palun paranda see väli" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Palun sisesta korrektne e-posti aadress" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Palun sisesta korrektne URL" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Palun sisesta korrektne kuupäev" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Palun sisesta korrektne kuupäev (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Palun sisesta korrektne number" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Palun sisesta korrektne krediitkaardi number" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Palun sisesta ainult numbrid" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Palun sisesta sama väärtus uuesti" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Palun sisesta kuni {0} märki" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Palun sisesta vähemalt {0} märki" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Palun sisesta väärtus pikkusega {0} kuni {1} tähte" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Palun sisesta väärtus vahemikust {0} kuni {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Palun sisesta väärtus, mis on väiksem kui või võrdne {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Palun sisesta väärtus, mis on suurem kui või võrdne {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Palun sisesta korrektne kuupäev või kellaaeg" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Palun sisesta korrektne 16-nd väärtus" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3751,7 +3757,7 @@ msgstr "Indeksid" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Tegevus" @@ -3762,8 +3768,8 @@ msgid "Keyname" msgstr "Võtme nimi" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3795,9 +3801,9 @@ msgstr "Kodeering" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Kommentaar" @@ -3812,14 +3818,14 @@ msgstr "%s indeks on kustutatud." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Kustuta" @@ -3932,7 +3938,7 @@ msgstr "Jälgimine" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4610,23 +4616,31 @@ msgstr "Hulktahukate kogum" msgid "A collection of geometry objects of any type" msgstr "Igat tüüpi geomeetriliste objektide kogum" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" +"Salvestab ja lubab efektiivse juurdepääsu JSON (JavaScript Object Notation) " +"dokumentides olevatele andmetele" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Arv" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Kuupäev ja aeg" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Sõne" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Ruumiline" @@ -4670,12 +4684,10 @@ msgid "Analyze Explain at %s" msgstr "Analüüsi ja seleta kohal %s" #: libraries/Util.class.php:1222 -#| msgid "Without PHP Code" msgid "Without PHP code" msgstr "PHP koodita" #: libraries/Util.class.php:1234 -#| msgid "Submit Query" msgid "Submit query" msgstr "Saada päring" @@ -4776,7 +4788,7 @@ msgstr "Kasuta seda väärtust" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Ridu" @@ -4858,7 +4870,7 @@ msgstr "EI" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nimi" @@ -7885,7 +7897,8 @@ msgid "No data to display" msgstr "Puuduvad kuvatavad andmed" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7919,32 +7932,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "Nimi '%s' on MySQLi reserveeritud võtmesõna." msgstr[1] "Nimed '%s' on MySQLi reserveeritud võtmesõnad." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Veergu ei ole valitud." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Veerud on edukalt liigutatud." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Päringu viga" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Tabeli %1$s muutmine õnnestus. Õiguseid kohandati vastavalt." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Päringu viga" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muuda" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7955,20 +7969,20 @@ msgstr "Muuda" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Ruumiline" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Täistekst" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Erista väärtusi" @@ -9369,7 +9383,7 @@ msgstr "Uus" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Vaated" @@ -9851,32 +9865,32 @@ msgid "Delete the table (DROP)" msgstr "Kustuta tabel (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analüüsi" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Kontrolli" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimeeri" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Loo uuesti" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Paranda" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Kärbi" @@ -9894,6 +9908,7 @@ msgid "Partition %s" msgstr "%s partitsioon" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Eemalda partitsioneerimine" @@ -10105,7 +10120,7 @@ msgstr "Andmete tõmmise valikud" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Andmete tõmmistamine tabelile" @@ -10129,21 +10144,21 @@ msgstr "Definitsioon" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tabeli struktuur tabelile" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Vaate struktuur" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Sise-vaate struktuur" @@ -10233,7 +10248,7 @@ msgid "Database:" msgstr "Andmebaas:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Andmed:" @@ -10334,7 +10349,7 @@ msgid "Data creation options" msgstr "Andmete loomise valikud" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Kärbi tabelit enne lisamist" @@ -10418,7 +10433,7 @@ msgstr "Tundub, et su tabel kasutab protseduure;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" "aliaste eksportimine võib mõningatel juhtudel töötada mitte usaldusväärselt." @@ -10484,24 +10499,24 @@ msgstr "AUTO_INCREMENT tõmmistatud tabelitele" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT tabelile" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Tundub, et su tabel kasutab trigereid;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Vaate %s struktuur eksporditi tabelina" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Andmete lugemisel esines viga:" @@ -12161,7 +12176,6 @@ msgid "User group" msgstr "Kasutaja grupp" #: libraries/server_privileges.lib.php:730 -#| msgid "Requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Ei nõua SSL krüpteeringuga ühendusi." @@ -12231,7 +12245,6 @@ msgstr "Piirab samaaegsete ühenduste hulka, mida kasutajal võib olla." #: libraries/server_privileges.lib.php:3179 #: libraries/server_privileges.lib.php:4437 #: templates/privileges/edit_routine_privileges.phtml:11 -#| msgid "Routines" msgid "Routine" msgstr "Funktsioon" @@ -12242,12 +12255,10 @@ msgid "" msgstr "Lubab õiguste tabelit laadimata lisada kasutajaid ja õigusi." #: libraries/server_privileges.lib.php:1042 -#| msgid "Allows altering and dropping stored routines." msgid "Allows altering and dropping this routine." msgstr "Lubab muuta ja kustutada selle funktsiooni." #: libraries/server_privileges.lib.php:1047 -#| msgid "Allows executing stored routines." msgid "Allows executing this routine." msgstr "Lubab käivitada selle funktsiooni." @@ -12451,7 +12462,6 @@ msgstr "Loo uus kasutaja konto samade õigustega ja …" #: libraries/server_privileges.lib.php:3178 #: templates/privileges/edit_routine_privileges.phtml:12 -#| msgid "Column-specific privileges" msgid "Routine-specific privileges" msgstr "Funktsioonipõhised õigused" @@ -14597,7 +14607,7 @@ msgid "Pick from Central Columns" msgstr "Vali veergude kesksest loendist" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Väljend" @@ -14611,79 +14621,64 @@ msgstr "esimene" msgid "after %s" msgstr "peale %s" -#: templates/columns_definitions/partitions_form.phtml:9 -#| msgid "Partitioned by:" +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "Partitsiooni tegi:" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 -#| msgid "Values for column %s" +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "Väärtus või veergude loend" -#: templates/columns_definitions/partitions_form.phtml:30 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "Partitsioonid:" -#: templates/columns_definitions/partitions_form.phtml:38 -#| msgid "Sub partitioned by:" +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "Alampartitsiooni tegi:" -#: templates/columns_definitions/partitions_form.phtml:59 -#| msgid "Sub partitioned by:" +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "Alampartitsioonid:" -#: templates/columns_definitions/partitions_form.phtml:71 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "Partitsioon" -#: templates/columns_definitions/partitions_form.phtml:72 -#| msgid "Value" +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "Väärtused" -#: templates/columns_definitions/partitions_form.phtml:74 -#| msgid "partitioned" +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "Alampartitsioon" -#: templates/columns_definitions/partitions_form.phtml:76 -#| msgid "Engines" +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "Mootor" -#: templates/columns_definitions/partitions_form.phtml:78 -#| msgid "Data home directory" +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "Andmete kataloog" -#: templates/columns_definitions/partitions_form.phtml:79 -#| msgid "Save directory" +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "Indeksite kataloog" -#: templates/columns_definitions/partitions_form.phtml:80 -#| msgid "Matched rows:" +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "Maks. ridu" -#: templates/columns_definitions/partitions_form.phtml:81 -#| msgid "rows" +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "Min. ridu" -#: templates/columns_definitions/partitions_form.phtml:82 -#| msgid "Table search" +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "Tabelite ruum" -#: templates/columns_definitions/partitions_form.phtml:83 -#| msgid "User group" +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "Sõlmede grupp" @@ -15089,7 +15084,6 @@ msgstr "" "kurakaldkriipsu ehk \\." #: templates/privileges/add_privileges_routine.phtml:3 -#| msgid "Add privileges on the following table:" msgid "Add privileges on the following routine:" msgstr "Lisa õiguseid järgnevale funktsioonile:" @@ -15406,26 +15400,42 @@ msgid "at beginning of table" msgstr "tabeli alguses" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Partitsioonid" #: templates/table/structure/display_partitions.phtml:7 +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Partitsioneerimine ei ole määratud!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Partitsioneeris:" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Alampartitsioneeris:" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Andmete pikkus" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Indeksi pikkus" +#: templates/table/structure/display_partitions.phtml:134 +#| msgid "Partition by:" +msgid "Partition table" +msgstr "Partitsioonide tabel" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Muuda partitsioneerimist" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Muuda vaadet" diff --git a/po/eu.po b/po/eu.po index 75f41884d8..4bcc11575b 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-31 14:23+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Bidali" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Reset egin" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Dena hautatu" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Balioa bat falta da formularioan!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "hitz hauetariko bat gutxienez" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indizea" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Editatu hurrengo lerroa" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Gehitu %s zutabe" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Eremuak honekin mugatuta:" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Gehitu %s zutabe" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "kontsultan" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Lar" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL kontsulta" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "balioa" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Zerbitzariaren izena hutsik dago!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Erabiltzailearen izena hutsik dago!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Pasahitza hutsik dago!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Hautatutako erabiltzaileak baztertu" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Itxi" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "%s taula ezabatu egin da" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profila eguneratua izan da." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Errenkada ezabatua izan da" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Beste" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Konexioak / Prozesuak" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "Konfiguratutako monitore lokal bateraezina" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1229,139 +1235,139 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy msgid "Query cache efficiency" msgstr "Kontsulta katxe eragikortasuna" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy msgid "Query cache usage" msgstr "Kontsulta katxe erabilpena" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy msgid "Query cache used" msgstr "Kontsulta katxe erabilia" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistema PUZ erabilera" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Sistemaren memoria" -#: js/messages.php:153 +#: js/messages.php:154 #, fuzzy msgid "System swap" msgstr "Sistemaren swap-a" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Bataz besteko karga" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memoria guztira" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memoria katxea" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memoria bufferrean" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memoria librea" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memoria erabilia" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Swap osoa" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy msgid "Cached swap" msgstr "Swap katxea" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy msgid "Used swap" msgstr "Swap erabilia" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy msgid "Free swap" msgstr "Sistemaren swap-a" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Jasota" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Konexioak" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Prozesuak" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Byte" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1369,33 +1375,33 @@ msgid "%d table(s)" msgstr "%s taula" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Eragiketak" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Trafikoa" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1407,47 +1413,47 @@ msgstr "" msgid "None" msgstr "Batez" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1455,154 +1461,154 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Bidali" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Gaituta" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Ezgaituta" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Fitxategiak inportatu" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "Lokal" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "Datu-baserik ez" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Datu-baserik ez" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Aztertu" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL-a azaldu" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1610,7 +1616,7 @@ msgstr "SQL-a azaldu" msgid "Status" msgstr "Egoera" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1620,98 +1626,98 @@ msgstr "Egoera" msgid "Time" msgstr "Denbora" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Gutira" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL emaitza" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Taula" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Karaktere-jokoa" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Taularen hobespenak" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Errenkada kopurua orriko" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Gutira" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "Lokal" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy msgid "Reload page" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1722,67 +1728,67 @@ msgstr "" msgid "Import" msgstr "Esportatu" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "Konfiguratutako monitore lokal bateraezina" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Kontsulta eguneratu" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentazioa" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentazioa" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1793,71 +1799,71 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "Lokal" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Prozesuak" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy msgid "Request failed!!" msgstr "Kontsulta mota" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prozesuak" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "Zutabearen barnean:" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Gehitu %s zutabe" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1867,68 +1873,68 @@ msgstr "Gehitu %s zutabe" msgid "OK" msgstr "Zuzena" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy msgid "Renaming databases" msgstr "Taula berrizendatu izen honetara: " -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy msgid "Copying database" msgstr "Datu-baserik ez" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Karaktere-jokoa" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy msgid "Failed to get real row count." msgstr "Akatsa goiburuak bilatzerakoan" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Bilatu" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "SQL kontsulta" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "SQL kontsulta" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Arakatu" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s ezabatzen" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1945,46 +1951,46 @@ msgstr "" msgid "Export" msgstr "Esportatu" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET editorea" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "%s zutaberako balioak" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Zutabe berrirako balioak" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Sartu balioak banatutako eremuetan" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Erabiltzaile berria gehitu" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "SQL kontsulta" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "SQL kontsulta" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1998,7 +2004,7 @@ msgstr "SQL kontsulta" msgid "Edit" msgstr "Editatu" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2010,96 +2016,96 @@ msgstr "Editatu" msgid "Delete" msgstr "Ezabatu" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Aldagaia" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No databases selected." msgid "Column selector" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Datu-basean bilatu" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Memoria librea" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributuak" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Lehen mailako gakoa gehitu zaio %s-(r)i." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Jarraipen informea" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2107,282 +2113,283 @@ msgstr "" msgid "End of step" msgstr "Taularen amaieran" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pribilegioak gehitu taula honetan" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Ez dago datu-baserik aukeratuta." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gorde" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "SQL kontsulta" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Bilatu" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Zutabe izenak" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Zutabe izenak" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL kontsulta" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Edukinen taula" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Puntu" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Lerro kateak" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Barne eraztuna" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Kanpo eraztuna" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Orri zenbakia:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Taulak hautatu" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Taulak hautatu" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2390,267 +2397,267 @@ msgstr "Taulak hautatu" msgid "Open page" msgstr "Erabilpena" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Taulak hautatu" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Aldatu edo esportatu erlazio-eskema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" zutaberako balioa" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Bidali" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Zutabe izenak" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Dena erakutsi" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Lerro kateak" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Deuseztatua" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Fitxategiak inportatu" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Taulak hautatu" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Datu-baserik ez" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Zutabe izenak" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dena erakutsi" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indizeak" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sareta erakutsi" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy msgid "Link with main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy msgid "Unlink from main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Taulak" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Ikusipegia" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy msgid "procedures" msgstr "Prozesuak" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy msgid "events" msgstr "Bidalita" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "Funtzioak" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2658,136 +2665,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "Taulak erakutsi" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ezikusi" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Kontsulta hau hemen berriz erakutsi" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Benetan nahi al duzu \"%s\" exekutatzea?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL kontsulta" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Taularen iruzkinak" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "SQL kontsulta" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Aurrekoa" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2795,96 +2802,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarioa " -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mai" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2892,78 +2899,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Abe" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2971,199 +2978,199 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Batez" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "segunduko" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Testu-eremua erabili" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Datu-base bat hautatu mesedez" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4135,7 +4142,7 @@ msgstr "Indizeak" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Ekintza" @@ -4146,8 +4153,8 @@ msgid "Keyname" msgstr "Giltza-izena" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4179,9 +4186,9 @@ msgstr "Ordenamendua" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 #, fuzzy msgid "Comment" msgstr "Iruzkinak" @@ -4197,14 +4204,14 @@ msgstr "%s indizea ezabatu da." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Ezabatu" @@ -4314,7 +4321,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4975,19 +4982,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Indize berri bat sortu" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Linestring" @@ -4995,7 +5008,7 @@ msgctxt "string types" msgid "String" msgstr "Lerro kateak" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5158,7 +5171,7 @@ msgstr "Erabili balio hau" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Errenkadak" @@ -5245,7 +5258,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Izena" @@ -8270,7 +8283,8 @@ msgid "No data to display" msgstr "Datu-baserik ez" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8312,38 +8326,39 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No databases selected." msgid "No column selected." msgstr "Ez dago datu-baserik aukeratuta." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Kontsulta mota" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Aldatu" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8354,20 +8369,20 @@ msgstr "Aldatu" msgid "Index" msgstr "Indizea" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Testu osoa" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -9832,7 +9847,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10299,34 +10314,34 @@ msgid "Delete the table (DROP)" msgstr "Datu-baserik ez" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Aztertu" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Check" msgstr "Txekiera" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 #, fuzzy msgid "Repair" msgstr "Taula konpondu" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10347,6 +10362,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10576,7 +10592,7 @@ msgstr "Datu-basea esportatzeko aukerak" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Taula honen datuak irauli" @@ -10603,14 +10619,14 @@ msgstr "Deskribapena" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Taularen egitura taula honentzat" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10618,7 +10634,7 @@ msgstr "Egitura soilik" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10730,7 +10746,7 @@ msgid "Database:" msgstr "Datu-basea" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10845,7 +10861,7 @@ msgid "Data creation options" msgstr "Eraldaketen hobespenak" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10915,7 +10931,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10995,24 +11011,24 @@ msgstr "Gehitu AUTO_INCREMENT balioa" msgid "AUTO_INCREMENT for table" msgstr "Gehitu AUTO_INCREMENT balioa" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Egitura soilik" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15226,7 +15242,7 @@ msgid "Pick from Central Columns" msgstr "Taula berrizendatu izen honetara: " #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15243,90 +15259,90 @@ msgstr "" msgid "after %s" msgstr "%s(a)ren ondoren" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Relations" msgid "Partition by:" msgstr "Erlazioak" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "%s zutaberako balioak" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Relations" msgid "Partitions:" msgstr "Erlazioak" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Relations" msgid "Subpartition by:" msgstr "Erlazioak" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Relations" msgid "Subpartitions:" msgstr "Erlazioak" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Relations" msgid "Partition" msgstr "Erlazioak" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "balioa" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Relations" msgid "Subpartition" msgstr "Erlazioak" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "Datu-hiztegia" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "Indize mota :" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Start" msgid "Max rows" msgstr "Lar" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Arakatu" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Bilatu" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16189,32 +16205,51 @@ msgid "at beginning of table" msgstr "Taularen hasieran" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Relations" msgid "Partitions" msgstr "Erlazioak" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Ez dago indizerik definituta!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Errenkadaren luzera" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Errenkadaren luzera" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Relations" +msgid "Partition table" +msgstr "Erlazioak" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Print view" +msgid "Edit partitioning" +msgstr "Inprimatzeko ikuspegia" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/fa.po b/po/fa.po index e4d15049c7..c5955f650b 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-07 14:51+0200\n" "Last-Translator: ashkan shirian \n" "Language-Team: Persian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ذخيره به صورت پرونده" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "پاک سازی" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "انتخاب همه" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "مقداري در فرم وارد نشده !" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "حداقل يكي از كلمات" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "افزودن index" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "ویرایش کردن ایندکس" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "افزودن %d ستون جديد به index" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "نسخه سرور" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "نسخه سرور" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "ستونهاي درميان‌گرفته با" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %d column(s) to index" msgid "Please select column(s) for the index." msgstr "افزودن %d ستون جديد به index" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "داخل کوئری" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "سطر تحت تاثیر قرار گرفته:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "پرس و جوي SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "مقدار" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "نام ميزبان خالي است!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "نام كاربر خالي است!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "اسم رمز خالي است!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "حذف کاربران انتخاب شده" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "بستن" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Page has been created." msgid "Template was created." msgstr "صفحه مورد نظر ایجاد گردید" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "تنظيمات به هنگام گرديد." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "سطر حذف گرديد" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "دیگر" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "اتصالات / پروسه ها" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "تنظیمات مانیتور محلی سازگار نیست" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1222,167 +1228,167 @@ msgstr "" "monitor dialog سازگار نیست. احتمالاً تنظیمات فعلی شما دیگر کار نکند. لطفاً از " "منوی تنظیمات تنظیمات خود را به حالت اولیه برگردانید." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "میزان کارایی کش کوئری" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "فضاي استفاده‌شده" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "فضاي استفاده‌شده" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "میزان استفاده از CPU سیستم" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "حافظه سیستم" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "swap سیستم" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "بار میانگین" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "کل حافظه" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "حافظه کش" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "حافظه بافر" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "حافظه آزاد" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "حافظه استفاده شده" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Swap کل" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Swap کش شده" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Swap استفاده شده" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Swap آزاد" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "میزان بایت ارسالی" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "میزان بایت دریافتی" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "اتصالات" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "پروسه ها" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "كيلوبايت" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "مگا بايت" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "گيگا بايت" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "ترابايت" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "پتا بايت" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "اگزا بايت" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d جدول" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "سوالات" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "ترافیک" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "تنظیم" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "اضافه کردن نمودار به جدول" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "لطفا حداقل یک مقدار به این سری اضافه نمایید" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1394,47 +1400,47 @@ msgstr "لطفا حداقل یک مقدار به این سری اضافه نما msgid "None" msgstr "هیچ یک" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "به حالت قبل برگرداندن مانیتور" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "توقف مانیتور" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log و slow_query_log فعال شدند." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log فعال شد." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log فعال است." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log و general_log are غیر فعال می باشند." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output به جدول تنظیم نشده است." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output به جدول تنظیم شده است." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1445,43 +1451,43 @@ msgstr "" "ثانیه طول کشیده باشند. بهتر است این مقدار را بین 0-2 بسته به سیستم خود قرار " "دهید." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time روی %d ثانیه تنظیم شده است." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "بعد از ری استارت سرور این تنظیمات به حالت پیش فرض برمیگردد:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "ذخيره به صورت پرونده %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "فعال سازی %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "غیر فعال سازی %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "long_query_time را به %ds تنظیم نمایید" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1489,58 +1495,58 @@ msgstr "" "شما این مقادیر را نمی توانید تغییر دهید. لطفا به عنوان root وارد شوید و یا " "با مدیر پایگاه داده تماس بگیرید." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "تغيير تنظیمات" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "تنظیمات فعلی" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy msgid "Chart title" msgstr "No tables" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "تفاوت" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "تقسیم بر %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "واحد" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "از slow log" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "از لاگ عمومی" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "آنالیز لاگ ها" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "در حال آنالیز و بارگیری لاگ. ممکن است مدتی زمان بگیرد." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "لغو کردن" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1550,7 +1556,7 @@ msgstr "" "کوئری SQL به عنوان ضابطه استفاده شده است، بنابراین بقیه مشخصات کوئری ها " "مانند زمان شروع ممکن است متفاوت باشند." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1559,31 +1565,31 @@ msgstr "" "چون دسته بندی کوئری Insert انتخاب شده است ، کوئری Insert در همان جدول نیز " "دسته بندی می شود بدون در نظر گرفتن داده های ورودی." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "لاگ داده ها بارگیری شد. کوئری هایی که در این دوره اجرا شده اند:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "پرش به جدول لاگ ها" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "اطلاعاتی یافت نشد" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "لاگ ها آنالیز شد، اما چیزی در این بازه زمانی یافت نشد." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "در حال آنالیز…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "شرح دادن خروجی" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1591,7 +1597,7 @@ msgstr "شرح دادن خروجی" msgid "Status" msgstr "وضعیت" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1601,58 +1607,58 @@ msgstr "وضعیت" msgid "Time" msgstr "زمان" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "زمان کل:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "دسته بندی نتایج" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "جدول" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "نمودار" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "آمار پايگاههاي داده" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "فیلتر" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "فیلتر کوئری ها به وسیله لغت/عبارت باقاعده:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "دسته کوئری ها،در نظر نگرفتن قسمت Where" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "تعداد سطرها در هر صفحه:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "مجموع:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "بارگیری لاگ ها" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "مانیتور رفرش ریت" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1661,28 +1667,28 @@ msgstr "" "هنگامی که اطلاعات جدید نمودار ارسال شد ، سرور جواب غلطی داد. این بیشتر به " "دلیل پایان زمان سشن شما می باشد.صفحه را رفرش کنید و دوباره وارد شوید." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "باز کردن مجدد صفحه" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "سطر تحت تاثیر قرار گرفته:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "تجزیه ی فایل های پیکربندی شده ناموفق بود .این کد معتبر برای JSON به نظر " "نمیرسد." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "ایجاد خطا در تقسیم بندی نمودار(چارت گرید) به واسطه تنظیمات غلط.باز گرداندن " "به تنظیمات پیش فرض …" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1692,63 +1698,63 @@ msgstr "" msgid "Import" msgstr "صدور" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "وارد کردن تنظیمات مانیتور" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "لطفا فایلی را که میخواهید وارد کنید را انتخاب کنید" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "آنالیز پرسجو" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "سیستم مشاور" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "امکان وجود مشکلات اجرایی" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "موضوع" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "پیشنهادات" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "جزئیات قانون" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "توجیهات" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "متغیر استفاده شده / فورمول" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "امتحان کردن" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1759,71 +1765,71 @@ msgstr "" msgid "Cancel" msgstr "لغو کردن" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "تغيير تنظیمات" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "در حال بارگیری…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "پردازش درخواست" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query" msgid "Request failed!!" msgstr "پرس و جو" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "خطا در پردازش درخواست" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "حذف ستون" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "اضافه کردن کلید اولیه" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1833,65 +1839,65 @@ msgstr "اضافه کردن کلید اولیه" msgid "OK" msgstr "تاييد" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "برای حذف کردن این اطلاعات کلیک کن" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "بازناميدن پایگاه داده" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "کپی کردن پایگاه داده" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "تغییر نویسهگان" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Select Foreign Key" msgid "Enable foreign key checks" msgstr "انتخاب کلید خارجی" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "دریافت سرصفحه ها مقدور نمی باشد" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "جستجو" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "نمایش نتایج" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "مشاهده" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "پاک کردن" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "تعریف یک تابع ذخیره شده باید شامل یک دستور بازگشت باشد!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1908,46 +1914,46 @@ msgstr "تعریف یک تابع ذخیره شده باید شامل یک دست msgid "Export" msgstr "صدور" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ویرایشگر ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "تعداد ستون ها %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "مقادیر ستون جدید" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "هر کدام از مقادیر را در یک فیلد وارد کنید" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "اضافه کردن مقدار %d" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "توجه داشته باشید:اگر این فایل شامل جداول چند گانه میباشد,انها به یکی تبدیل " "خواهند شد." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "مخفی کردن جعبه پرس و جو" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "نمایش جعبه پرس و جو" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1961,7 +1967,7 @@ msgstr "نمایش جعبه پرس و جو" msgid "Edit" msgstr "ويرايش" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1973,96 +1979,96 @@ msgstr "ويرايش" msgid "Delete" msgstr "حذف" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d شماره ردیف معتبر نمی باشد." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "متغییر" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "هیچ سطری انتخاب نشده است" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "جستجو در پايگاه‌ داده" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "حافظه آزاد" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "همکاری" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "يك كليد اصلي در %s اضافه شد" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "گزارشات دنبال شده" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2070,255 +2076,256 @@ msgstr "" msgid "End of step" msgstr "در انتهاي جدول" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "انجام شد" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "ساخت جدول جديد در پايگاه داده %s" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "هیچ پایگاه داده ای انتخاب نشده است." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "ذخيره" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "جستجو" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "نام ستونها" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "نام ستونها" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "پنهان سازی ضوابط جستجو" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "نمایش معیارهای جستجو" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "هر نقطه نشان دهنده یک سطر داده ها." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "برچسب ن برفزار یک نقطه نشان داده خواهد شد." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "برای بزرگنمایی,یک بخش را با موس انتخاب نمایید." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "با کیک بر روی داده ها ان ها را بینید و احتمالا ردیف داده ها راویرایش کنید." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "تغییر اندازه طرح با کشیدن آن در امتداد گوشه پایین سمت راس میتواند انجام " "گیرد." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "انتخاب دو ستون" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "انتخاب دو ستون متفاوت" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "محتوای داده ها" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "در نظر نگرفتن" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "کپی" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "درجه" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "رشته خطی" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "چند گوشه" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "هندسه" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "حلقه داخلی" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "حلقه بیرونی:" -#: js/messages.php:445 +#: js/messages.php:446 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "آیا میخواهید تنظیمات باقی مانده را وارد کنید؟" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "انتخاب کلید اشاره" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "انتخاب کلید خارجی" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "لطفا کلید اولیه و یا یک کلید منحصر به فرد را انتخاب کنید" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2326,98 +2333,98 @@ msgstr "" "تغییر در طرح شما ذخیره نشده است. آنها از دست خواهد رفت اگر شما آنها را ذخیره " "نکنید. ایا شما میخواهید ادامه دهید؟" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "شماره صفحه:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Select Tables" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Select Tables" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "صفحه های ازاد" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Select Tables" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "واحد" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "اضافه کردن تنظیمات برای ستون " -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "ارسال" -#: js/messages.php:482 +#: js/messages.php:483 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "دکمه ی escape را برای صرفنظر کردن از ویرایش" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2425,49 +2432,49 @@ msgstr "" "شما مقداری داده ویرایش کردید و ان ها ذخیره نشده اند.ایا شما برای ترک این " "صفحه بدون ذخیره کردن داده ها اطمینان دارید؟" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "برای دوباره مرتب کردن drag کنید" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "برای علامتگذاری / برداشتن علامت اینجا را کلبک کن" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "نام ستونها" -#: js/messages.php:490 +#: js/messages.php:491 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "با کلیک بر روی منوی کشویی
فلش به ضامن دید ستون" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "نمايش همه" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2475,53 +2482,53 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "موقعیت اصلی" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "لغو کردن" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "وارد کردن فایل ها" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:510 +#: js/messages.php:511 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2529,7 +2536,7 @@ msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:513 +#: js/messages.php:514 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2537,108 +2544,108 @@ msgid "You can also edit most values
by clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "به لینک بروید" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "نام ستونها" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "توليد‌ کن" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "بیشتر" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "نمايش همه" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "مخفی کردن فهرست ها" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show hint" msgid "Show hidden navigation tree items." msgstr "Show grid" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize text input fields" msgid "Link with main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize text input fields" msgid "Unlink from main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "جدولها" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "نمایش" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Processes" msgid "procedures" msgstr "پروسه ها" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Events" msgid "events" msgstr "رویدادها" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "تابع" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2648,136 +2655,136 @@ msgstr "" "نسخه %s و در %s بیرون آمده است." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "نسخه قبلی:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "به روز" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "پورت سرور" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "پورت سرور" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير تنظیمات" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "نمايش جدولها" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "در نظر نگرفتن" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "نمايش دوباره اين پرس و جو در اينجا" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "توضيحات جدول" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "قبل" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2785,350 +2792,350 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "امروز" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "ژانویه" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "فوریه" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "مارس" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "آوريل" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "مي" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "ژوئن" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "جولاي" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "آگوست" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "سپتامبر" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "اكتبر" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "نوامبر" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "دسامبر" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "جمعه" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "هفته" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "تقویم-ماه-سال" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "ساعت" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "ثانیه" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "فیلد های متنی" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4099,7 +4106,7 @@ msgstr "فهرست‌ها" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "عمل" @@ -4110,8 +4117,8 @@ msgid "Keyname" msgstr "نام کلید" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4143,9 +4150,9 @@ msgstr "مقایسه" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "توضيحات" @@ -4160,14 +4167,14 @@ msgstr "فهرست %s حذف گرديد." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "حذف" @@ -4277,7 +4284,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4942,19 +4949,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "ساخت فهرست جديد" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -4962,7 +4975,7 @@ msgctxt "string types" msgid "String" msgstr "خطوط منتهي به" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5130,7 +5143,7 @@ msgstr "این مقدار را استفاده کنید" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "سطرها" @@ -5215,7 +5228,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "اسم" @@ -8222,7 +8235,8 @@ msgid "No data to display" msgstr "اطلاعاتی یافت نشد" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8264,39 +8278,40 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "هیچ سطری انتخاب نشده است" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "پايگاه داده %s حذف گرديد." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %s has been moved to %s." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "جدول %s به %s انتقال داده‌شد." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query" msgid "Query error" msgstr "پرس و جو" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %s has been moved to %s." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "جدول %s به %s انتقال داده‌شد." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "تغيير" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8307,20 +8322,20 @@ msgstr "تغيير" msgid "Index" msgstr "فهرست" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "كاملا متن" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -9790,7 +9805,7 @@ msgstr "جدید" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10259,32 +10274,32 @@ msgid "Delete the table (DROP)" msgstr "No databases" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "تعمیر" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10305,6 +10320,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10532,7 +10548,7 @@ msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "حذف داده‌هاي جدول" @@ -10558,14 +10574,14 @@ msgstr "توضیحات" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10573,7 +10589,7 @@ msgstr "فقط ساختار" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10681,7 +10697,7 @@ msgid "Database:" msgstr "پايگاه داده" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10795,7 +10811,7 @@ msgid "Data creation options" msgstr "آمار پايگاههاي داده" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10865,7 +10881,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10941,24 +10957,24 @@ msgstr "مقدار افزایشی خودکار اضافه شود" msgid "AUTO_INCREMENT for table" msgstr "مقدار افزایشی خودکار اضافه شود" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "فقط ساختار" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -15047,7 +15063,7 @@ msgid "Pick from Central Columns" msgstr "حذف نمودار" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15064,92 +15080,92 @@ msgstr "" msgid "after %s" msgstr "بعد از %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Position" msgid "Partition by:" msgstr "موقعیت" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "تعداد ستون ها %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Position" msgid "Partitions:" msgstr "موقعیت" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Position" msgid "Subpartition by:" msgstr "موقعیت" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Position" msgid "Subpartitions:" msgstr "موقعیت" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Position" msgid "Partition" msgstr "موقعیت" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "مقدار" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Position" msgid "Subpartition" msgstr "موقعیت" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "موتور" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "دیکشنری داده‌ها" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "ذخیره ی پوشه" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "سطر تحت تاثیر قرار گرفته:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "مشاهده" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "جستجو" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -15992,32 +16008,51 @@ msgid "at beginning of table" msgstr "در ابتداي جدول" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Position" msgid "Partitions" msgstr "موقعیت" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "هيچ فهرستي تعريف‌نشده‌است!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "طول سطر" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "طول سطر" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Position" +msgid "Partition table" +msgstr "موقعیت" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Print view" +msgid "Edit partitioning" +msgstr "نماي چاپ" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/fi.po b/po/fi.po index 7a3dd9911b..2d8565f776 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-08-12 17:17+0200\n" "Last-Translator: Lari Oesch \n" "Language-Team: Finnish " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Tallenna & sulje" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Palauta" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Palauta kaikki" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Tarvittava tieto puuttuu lomakkeesta!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Valitse vaihtoehdoista vähintään yksi!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Annathan kelvollisen porttinumeron!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Annathan kelvollisen pituuden!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Lisää indeksi" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Muokkaa indeksiä" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Lisää indeksiin %s kolumni(a)" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Luo yhden sarakkeen avain" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Luo komposiitti-indeksi" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Yhdistä:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Ole hyvä ja valitse sarakkeet avainta varten." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Sinun tulee lisätä vähintään yksi sarake." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Esikatsele SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Jäljittele kyselyä" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Täsmänneet rivit:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL-kysely:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Arvot" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Palvelimen nimi puuttuu!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Käyttäjän nimi puuttuu!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Salasana puuttuu!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Poista valitut käyttäjät" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Sulje" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Luotujen sivujen määrä." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profiili on päivitetty." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Rivi on nyt poistettu." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Toinen" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Yhteyttä / Prosessi" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Paikallisen seurannan asetukset ovat yhteensopimattomat!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1181,165 +1187,165 @@ msgstr "" "hyvin todennäköistä, että nykyiset asetukset eivät toimi enää. Palauta " "Asetukset-valikosta oletusasetukset." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Kyselyvälimuistin tehokkuus" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Kyselyvälimuistin käyttö" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Kyselyvälimuistia käytetty" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Järjestelmän prosessorin käyttö" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Järjestelmän muisti" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Järjestelmän sivutusmuisti" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Keskimääräinen kuormitus" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Muistia yhteensä" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Puskuroitua muistia" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Puskuroitu muisti" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Vapaata muistia" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Käytetty muisti" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Yhteensä sivutusmuistia" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Välimuistissa oleva sivutus" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Käytetty sivutusmuisti" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Vapaata sivutusmuistia" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Tavua lähetetty" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Tavua vastaanotettu" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Yhteydet" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Prosessit" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "tavua" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "kt" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "Mt" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "Gt" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "Tt" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "Pt" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "Et" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d taulu(a)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Kysymykset" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Liikenne" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Asetukset" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Lisää taulukko ruudukkoon" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Lisää sarjaan vähintään yksi muuttuja!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1351,47 +1357,47 @@ msgstr "Lisää sarjaan vähintään yksi muuttuja!" msgid "None" msgstr "Ei mitään" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Jatka seurantaa" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Keskeytä seuranta" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Aloita automaattinen päivittäminen" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Lopeta automaattinen päivittäminen" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log ja slow_query_log ovat käytössä." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log on käytössä." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log on käytössä." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ja general_log ovat poissa käytöstä." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output ei ole TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output on asetettu TABLE:ksi." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1402,12 +1408,12 @@ msgstr "" "kestävät yli %d sekuntia. On suositeltavaa asettaa long_query_time 0-2 " "sekuntiin riippuen järjestelmästäsi." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time on asetettu %d sekuntiin." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1416,30 +1422,30 @@ msgstr "" "palautetaan oletuksiin palvelimen uudelleenkäynnistyksen yhteydessä:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Aseta log_output arvoon %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Ota %s käyttöön" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Ota %s pois käytöstä" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Aseta long_query_time arvoon %d sekuntia." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1447,61 +1453,61 @@ msgstr "" "Et voi muuttaa näitä muuttujia. Ole hyvä, ja kirjaudu root-käyttäjällä tai " "ota yhteyttä tietokantasi järjestelmänvalvojaan." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Muuta asetuksia" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Nykyiset asetukset" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Raportin otsikko" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Ero" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Jaettu millä: %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Yksikkö" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Hitaasta lokista" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Yleisestä lokista" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Tietokannan nimi ei ole tiedossa palvelimen lokitiedostoissa tätä " "hakukyselyä varten." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analyysilokit" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Analysoidaan ja ladataan lokeja. Tämä kestää hetken." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Peruuta pyyntö" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1511,7 +1517,7 @@ msgstr "" "lukumäärän. Ryhmittelyn perusteena käytetään kuitenkin vain itse SQL-" "kyselyä, joten kyselyjen ominaisuudet, kuten aloitusaika, voivat olla muuta." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1520,31 +1526,31 @@ msgstr "" "Koska INSERT-kyselyjen ryhmittely on valittu, ryhmitellään INSERT-kyselyt " "samaan tauluun, riippumatta lisätyistä tiedoista." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Lokin tiedot on ladattu. Kyselyt suoritetaan tällä aikajänteellä:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Siirry lokitauluun" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Tietoa ei löydy" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "Loki on analysoitu, mutta tietoja ei löydy annetulta aikajänteeltä." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analysointi…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Selitä SQL-kysely" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1552,7 +1558,7 @@ msgstr "Selitä SQL-kysely" msgid "Status" msgstr "Tila" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1562,58 +1568,58 @@ msgstr "Tila" msgid "Time" msgstr "Aika" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Kokonaisaika:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profiloinnin tulokset" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Taulu" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Kaavio" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Kirjaa taulun suodatusvalinnat lokiin" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Suodatin" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Suodata kyselyjä hakusanalla/regexp-ilmaisulla:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Ryhmitä kyselyt, sivuuttaen WHERE-lauseiden muuttujatiedot" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Ryhmitettyjen rivien määrä:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Yhteensä:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Lokien lataus" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Seurannan päivitys epäonnistui" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1623,28 +1629,28 @@ msgstr "" "pyydettäessä. Tämä johtuu todennäköisimmin vanhentuneesta istunnosta. Lataa " "sivu uudestaan ja syötä kirjautumistiedot." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Lataa sivu uudelleen" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Käsitellyt rivit:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Asetustiedoston jäsennys epäonnistui. Vaikuttaa, että kyseessä on " "virheellistä JSON-koodia." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kaavioruudukon luonti ei onnistunut tuoduilla määrityksillä. Käytetään " "oletusmäärityksiä…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1654,61 +1660,61 @@ msgstr "" msgid "Import" msgstr "Tuonti" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Tuo seuranta-asetukset" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Valitse tuotava tiedosto." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Tuotavia tiedostoja ei ole saatavilla palvelimella!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analysoi kysely" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Neuvontajärjestelmä" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Mahdollisia suorituskykyongelmia" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Ongelma" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Suositus" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Säännön lisätiedot" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Perustelut" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Käytetty muuttuja / kaava" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Testaa" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1719,73 +1725,73 @@ msgstr "" msgid "Cancel" msgstr "Peruuta" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Muuta asetuksia" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Käytä" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Lataa…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Pyyntö keskeytetty!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Pyyntöä käsitellään" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "Pyyntö keskeytetty!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Virhe pyynnön käsittelyssä" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Virhekoodi: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Virhekoodi: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Yhtään tietokantaa ei ole valittu." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Sarakkeen poisto" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Lisää pääavain" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1795,63 +1801,63 @@ msgstr "Lisää pääavain" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Poista tämä huomautus napsauttamalla" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Muuta tietokantojen nimiä" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Tietokannan kopiointi" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Merkistökoodauksen vaihtaminen" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Älä tarkista viiteavaimia" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Oikean rivimäärän nouto epäonnistui." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Etsi" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Piilota hakutulokset" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Näytä hakutulokset" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Selaaminen" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Poisto" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Tallennettavan funktion määritelmässä tulee olla RETURN-lause!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1868,43 +1874,43 @@ msgstr "Tallennettavan funktion määritelmässä tulee olla RETURN-lause!" msgid "Export" msgstr "Vienti" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET-muokkaus" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Arvot sarakkeelle %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Arvot uudelle sarakkeelle" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Syötä jokainen arvo eri kenttään." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Lisää %d arvo(a)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Huom: Mikäli tiedostossa on useita tauluja, ne liitetään yhdeksi tauluksi." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Piilota SQL-kyselykenttä" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Näytä kyselykenttä" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1918,7 +1924,7 @@ msgstr "Näytä kyselykenttä" msgid "Edit" msgstr "Muokkaa" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1930,42 +1936,42 @@ msgstr "Muokkaa" msgid "Delete" msgstr "Poista" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d on virheellinen rivinumero." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Muuttuja" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Poimi sarake" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Sarakkeenvalitsin" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Hae tästä listasta" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1975,15 +1981,15 @@ msgstr "" "sarakelistaus tietokantaa %s varten sisältää sarakkeita jotka eivät ole " "tämän hetkisessä taulussa." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Katso lisää" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Oletko varma?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1991,51 +1997,51 @@ msgstr "" "Tämä toiminto saattaa muuttaa joidenkin sarakkeiden määritelmiä.
Oletko " "varma että haluat jatkaa?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Jatka" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Lisää pääavain" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Pääavain lisätty." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Viedään sinut seuraavaan vaiheeseen…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Ensimmäinen askel taulun '%s' normalisoinnille on valmis." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Vaiheen loppu" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Normalisaation toinen askel (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Valmis" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Vahvista todeksi osittaiset riippuvuudet" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Osittaiset riippuvuudet ovat seuraavat:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2043,20 +2049,20 @@ msgstr "" "Huomio: a, b -> d, f merkitsee että sarakkeiden a ja b arvot yhdistettynä " "voivat määrittää sarakkeiden d ja f arvot." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Osittaisia riippuvuuksia ei ole valittu!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Näytä minulle mahdolliset osittaiset riippuvuudet perustuen taulun tietoihin" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Piilota osittaisten riippuvuuksien lista" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2065,191 +2071,192 @@ msgstr "" "viedä sekunnin tai kaksi riippuen tietojen koosta ja taulun sarakkeiden " "määrästä." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Askel" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Seuraavat toiminnot tullaan suorittamaan:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP sarakkeet %s taulusta %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Luo seuraava taulu" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Normalisaation kolmas askel (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Vahvista todeksi transitiiviset riippuvuudet" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Valitut riippuvuudet ovat seuraavat:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Yhtään riippuvuutta ei ole valittu!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Tallenna" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Piilota hakukriteerit" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Näytä hakukriteerit" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Aluehaku" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Sarakkeiden enimmäismäärä:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Sarakkeiden vähimmäismäärä:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Vähimmäisarvo:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Enimmäisarvo:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Piilota etsi ja korvaa kriteerit" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Näytä etsi ja korvaa kriteerit" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Kukin piste kuvaa tietoriviä." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Pisteen nimi näkyy, kun osoitin viedään sen ylle." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Lähennä, valitse kohta hiirellä." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Palaa alkuperäiseen tilaan napsauttamalla nollaa zoomaus painikeeta." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Näytä ja tarvittaessa muokkaa tietoriviä napsauttamalla tietopistettä." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "Kaavion kokoa voi muuttaa raahaamalla sen oikeata alakulmaa." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Valitse kaksi saraketta" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Valitse kaksi eri saraketta" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Tietopisteen sisältö" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopioi" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Piste" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Rivimerkkijono" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Monikulmio" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Sisäympyrä" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ulkokehä:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Haluatko kopioida salausavaimen?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Salausavain" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Valitse pää- tai uniikkiavain!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Valitse näytettävä sarake" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2257,79 +2264,79 @@ msgstr "" "Asettelumuutoksia ei ole tallennettu. Tallentamattomat muutokset menetetään. " "Haluatko silti jatkaa?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Sivun nimi" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Tallenna sivu" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Tallenna sivu" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Avaa sivu" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Poista sivu" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Nimetön" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Valitse sivu jatkaaksesi" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Haluatko tallentaa nykyisen sivun muutokset?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Sivu poistettu onnistuneesti" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Vie relaatioskeema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lisää valinta sarakkeelle ”%s”." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objekti(a) luotu." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Lähetä" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Peruuta muokkaaminen painamalla Esc-näppäintä." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2337,15 +2344,15 @@ msgstr "" "Olet muuttanut joitakin tietoja ja niitä ei ole tallennettu. Haluatko " "varmasti poistua tältä sivulta ennen tietojen tallentamista?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Muuta järjestystä vetämällä." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Järjestä tämän sarakkeen tulokset napsauttamalla." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2355,26 +2362,26 @@ msgstr "" "laittaaksesi ASC/DESC - ehdon päälle.
- Ctrl+Click tai Alt+Click (Mac: " "Shift+Option+Click) poistaaksesi sarakkeen ORDER BY - klausuulista" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Merkitse tai poista merkintä napsauttamalla." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Kopioi kentän nimi kaksoisnapsauttamalla." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Muuta sarakkeen näkyvyyttä
napsauttamalla pudotusvalikon nuolta." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Näytä kaikki" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2383,13 +2390,13 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Ole hyvä ja anna pätevä heksadesimaalinen merkkijono. Pätevät merkit ovat " "0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2397,142 +2404,142 @@ msgstr "" "Oletko varma että haluat nähdä kaikki rivit? Suuret taulut voivat kaataa " "selaimesi." -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Alkuperäinen merkkijono" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "peruuta" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Keskeytetty" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Onnistui" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Tuo tila" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Vedä tiedostot tähän" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Valitse ensin tietokanta" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Useimpia sarakkeita voi myös muokata
\n" "painamalla suoraan niiden sisältöä." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Useimpia sarakkeita voi myös muokata
painamalla suoraan niiden sisältöä." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Siirry linkkiin:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Kopioi kentän nimi." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Napsauta hiiren kakkospainikeella sarakkeen nimeä kopioidaksesi sen " "leikepöydälle." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Keksi" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Lisää" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Näytä paneeli" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Piilota paneeli" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Näytä piilotetut navigointipuun kohteet." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Linkitä pääpaneelin kanssa" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Poista pääpaneelin linkki" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Taulut" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Views" msgid "views" msgstr "Näkymät" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Proseduurit" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "Tapahtuma" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Funktiot" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "Pyydettyä sivua ei löytynyt historiasta, se voi olla vanhentunut." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2542,57 +2549,57 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", viimeisin vakaa versio:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "ajan tasalla" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Luo näkymä" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Palvelinportti" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Lähetä virheraportti" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Tapahtui vakava JavaScript-virhe. Haluatko lähettää virheraportin?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Muuta raportin asetuksia" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Näytä raportin tarkat tiedot" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Vientisi on vaillinainen, koska PHP-tasolla on alhainen suoritusaikaraja!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2602,64 +2609,64 @@ msgstr "" "lomake jotkut kentät voidaan jättää huomiotta, PHP:n max_input_vars " "konfiguraation vuoksi." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Palvelimella on havaittu joitakin virheitä!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Ole hyvä ja katso tämän ikkunan alalaitaan." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Sivuuta kaikki" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Asetuksiesi mukaisesti niitä ollaan lähettämässä para-aikaa, ole hyvä ja ole " "kärsivällinen." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Suoritetaanko tämä kysely uudelleen?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Haluatko varmasti poistaa tämän kirjanmerkin?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-kyselyt" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Taulun kommentit" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Piilota hakutulokset" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2670,361 +2677,361 @@ msgstr "" "Safari-verkkoselainta, tämä ongelma on yleensä yksityisen selauksen " "aiheuttama." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Edellinen kuukausi" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Seuraava kuukausi" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Tänään" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Tammikuu" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Helmikuu" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Maaliskuu" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Huhtikuu" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Toukokuu" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Kesäkuu" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Heinäkuu" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Elokuu" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Syyskuu" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Lokakuu" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Marraskuu" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Joulu" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Sunnuntai" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Maanantai" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Tiistai" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Keskiviikko" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Torstai" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Perjantai" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Lauantai" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Vko" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "kalenteri-kuukausi-vuosi" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Tunti" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekunti" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Käytä tekstikenttää" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Annathan kelvollisen porttinumeron!" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Annathan kelvollisen porttinumeron!" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Annathan kelvollisen porttinumeron!" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Annathan kelvollisen pituuden!" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Annathan kelvollisen pituuden!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Annathan kelvollisen sivun nimen" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Annathan kelvollisen porttinumeron!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3921,7 +3928,7 @@ msgstr "Indeksit" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Toiminnot" @@ -3932,8 +3939,8 @@ msgid "Keyname" msgstr "Avaimen nimi" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3965,9 +3972,9 @@ msgstr "Aakkosjärjestys" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Kommentti" @@ -3982,14 +3989,14 @@ msgstr "Indeksi %s on poistettu." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Tuhoa" @@ -4101,7 +4108,7 @@ msgstr "Seuranta" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4782,23 +4789,29 @@ msgstr "Kokoelma polygoneja" msgid "A collection of geometry objects of any type" msgstr "Kokoelma mitä tahansa geometrisiä objekteja" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Lukuarvo" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Päiväys ja aika" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Merkkijono" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Geometrinen" @@ -4956,7 +4969,7 @@ msgstr "Käytä tätä arvoa" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Kpl rivejä" @@ -5037,7 +5050,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nimi" @@ -8526,7 +8539,8 @@ msgid "No data to display" msgstr "Tietoa ei löydy" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8570,37 +8584,38 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Ei valittua saraketta." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Valitsemiesi käyttäjien poisto onnistui." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Taulun %1$s muuttaminen onnistui." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "Älä välitä virheistä" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Taulun %1$s muuttaminen onnistui." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Muokkaa" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8611,20 +8626,20 @@ msgstr "Muokkaa" msgid "Index" msgstr "Indeksi" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Koko teksti" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10122,7 +10137,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Näkymät" @@ -10595,32 +10610,32 @@ msgid "Delete the table (DROP)" msgstr "Siirry tietokantaan" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analysoi" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Tarkasta" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimoi" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Rakenna uudestaan" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Korjaa" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10640,6 +10655,7 @@ msgid "Partition %s" msgstr "Ositus %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Poista ositus" @@ -10867,7 +10883,7 @@ msgstr "Tiedon vedostusasetukset" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Vedos taulusta" @@ -10891,21 +10907,21 @@ msgstr "Määritys" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Rakenne taululle" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Näkymän rakenne" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Näkymän vararakenne" @@ -11011,7 +11027,7 @@ msgid "Database:" msgstr "Tietokanta" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11118,7 +11134,7 @@ msgid "Data creation options" msgstr "Objektin luontivaihtoehdot" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11188,7 +11204,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11264,25 +11280,25 @@ msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä" msgid "AUTO_INCREMENT for table" msgstr "Lisää AUTO_INCREMENT-arvo" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME-TYYPIT TAULULLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELAATIOT TAULULLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Näkymän rakenne" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15859,7 +15875,7 @@ msgid "Pick from Central Columns" msgstr "Poista sarake/sarakkeet" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15876,92 +15892,92 @@ msgstr "" msgid "after %s" msgstr "Jälkeen sarakkeen: %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "ositettu" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Arvot sarakkeelle %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Ositus %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "ositettu" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "ositettu" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Ositus %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Arvo" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "ositettu" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Moottorit" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Tiedostojen kotihakemisto" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Tallennushakemisto" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Täsmänneet rivit:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Selaa" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "Taulu haku" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -16825,7 +16841,7 @@ msgid "at beginning of table" msgstr "Taulun alkuun" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16833,28 +16849,47 @@ msgstr "Ositus %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Indeksiä ei ole määritelty!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "ositettu" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "ositettu" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Rivin pituus" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Rivin pituus" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "ositettu" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Poista ositus" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/fr.po b/po/fr.po index 993409d2ca..885f439d41 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" -"PO-Revision-Date: 2015-09-29 11:41+0200\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" +"PO-Revision-Date: 2015-10-01 14:12+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: French " "\n" @@ -13,7 +13,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 2.5\n" +"X-Generator: Weblate 2.5-dev\n" #: changelog.php:37 license.php:30 #, php-format @@ -168,8 +168,8 @@ msgid "Comments" msgstr "Commentaires" #: db_datadict.php:156 -#: libraries/controllers/TableStructureController.class.php:952 -#: libraries/controllers/TableStructureController.class.php:957 +#: libraries/controllers/TableStructureController.class.php:1183 +#: libraries/controllers/TableStructureController.class.php:1188 #: libraries/tracking.lib.php:922 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 @@ -177,7 +177,7 @@ msgstr "Commentaires" msgid "Primary" msgstr "Primaire" -#: db_datadict.php:166 js/messages.php:317 libraries/Index.class.php:567 +#: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 libraries/mult_submits.lib.php:403 @@ -201,16 +201,16 @@ msgstr "Primaire" msgid "No" msgstr "Non" -#: db_datadict.php:166 js/messages.php:444 libraries/Index.class.php:568 +#: db_datadict.php:166 js/messages.php:445 libraries/Index.class.php:568 #: libraries/Index.class.php:605 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/controllers/TableStructureController.class.php:541 -#: libraries/controllers/TableStructureController.class.php:1203 -#: libraries/controllers/TableStructureController.class.php:1212 -#: libraries/controllers/TableStructureController.class.php:1217 -#: libraries/controllers/TableStructureController.class.php:1222 -#: libraries/controllers/TableStructureController.class.php:1227 +#: libraries/controllers/TableStructureController.class.php:772 +#: libraries/controllers/TableStructureController.class.php:1434 +#: libraries/controllers/TableStructureController.class.php:1443 +#: libraries/controllers/TableStructureController.class.php:1448 +#: libraries/controllers/TableStructureController.class.php:1453 +#: libraries/controllers/TableStructureController.class.php:1458 #: libraries/mult_submits.inc.php:82 libraries/mult_submits.inc.php:195 #: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 #: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 @@ -252,7 +252,7 @@ msgstr "Aucune table n'a été trouvée dans cette base." #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:119 -#: templates/database/structure/show_create.phtml:18 +#: templates/database/structure/show_create.phtml:19 msgid "Tables" msgstr "Tables" @@ -419,23 +419,23 @@ msgid "Point:" msgstr "Point : " #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 -#: gis_data_editor.php:370 js/messages.php:433 +#: gis_data_editor.php:370 js/messages.php:434 msgid "X" msgstr "X" #: gis_data_editor.php:217 gis_data_editor.php:245 gis_data_editor.php:301 -#: gis_data_editor.php:376 js/messages.php:434 +#: gis_data_editor.php:376 js/messages.php:435 msgid "Y" msgstr "Y" #: gis_data_editor.php:239 gis_data_editor.php:295 gis_data_editor.php:368 -#: js/messages.php:436 +#: js/messages.php:437 #, php-format msgid "Point %d" msgstr "Point %d" #: gis_data_editor.php:252 gis_data_editor.php:308 gis_data_editor.php:386 -#: js/messages.php:442 +#: js/messages.php:443 msgid "Add a point" msgstr "Ajouter un point" @@ -457,7 +457,7 @@ msgstr "Anneau intérieur %d : " msgid "Add a linestring" msgstr "Ajouter une ligne" -#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:443 +#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:444 msgid "Add an inner ring" msgstr "Ajouter un anneau intérieur" @@ -474,7 +474,7 @@ msgstr "Ajouter un polygone" msgid "Add geometry" msgstr "Ajouter géométrie" -#: gis_data_editor.php:409 js/messages.php:292 +#: gis_data_editor.php:409 js/messages.php:293 #: libraries/DbSearch.class.php:464 libraries/DisplayResults.class.php:1799 #: libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:166 @@ -529,7 +529,7 @@ msgstr "" msgid "Succeeded" msgstr "Succès" -#: import.php:58 js/messages.php:501 +#: import.php:58 js/messages.php:502 msgid "Failed" msgstr "Échec" @@ -628,7 +628,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Impossible de charger l'état d'avancement de l'importation." -#: import_status.php:112 js/messages.php:378 libraries/Util.class.php:780 +#: import_status.php:112 js/messages.php:379 libraries/Util.class.php:780 #: libraries/export.lib.php:518 #: libraries/plugins/schema/Export_Relation_Schema.class.php:298 #: user_password.php:253 @@ -654,7 +654,7 @@ msgstr "" msgid "General settings" msgstr "Paramètres généraux" -#: index.php:191 js/messages.php:525 +#: index.php:191 js/messages.php:526 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:247 msgid "Change password" @@ -963,7 +963,12 @@ msgstr "" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Voulez-vous vraiment tronquer les partitions sélectionnées ?" -#: js/messages.php:67 +#: js/messages.php:66 +#| msgid "Do you really want to TRUNCATE the selected partition(s)?" +msgid "Do you really want to remove partitioning?" +msgstr "Voulez-vous vraiment enlever le partitionnement ?" + +#: js/messages.php:68 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -977,17 +982,17 @@ msgstr "" "affichage des données dans le nouveau classement; dans ce cas nous vous " "suggérons de revenir au classement original et de consulter les conseils à " -#: js/messages.php:73 +#: js/messages.php:74 msgid "Garbled Data" msgstr "Données déformées" -#: js/messages.php:75 +#: js/messages.php:76 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" "Êtes-vous certain de vouloir modifier le classement et de convertir les " "données ?" -#: js/messages.php:77 +#: js/messages.php:78 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1004,7 +1009,7 @@ msgstr "" "d'édition de colonne (le lien \"Modifier\") sur la page de structure de " "table." -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1012,161 +1017,161 @@ msgstr "" "Êtes-vous certain de vouloir modifier le classement de toutes les colonnes " "et de convertir les données ?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Sauvegarder et fermer" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Réinitialiser" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Tout réinitialiser" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Formulaire incomplet !" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Sélectionnez au moins l'une des options !" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Veuillez saisir un nombre valide !" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Veuillez saisir une longueur valide !" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Ajouter un index" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Modifier un index" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Ajouter %s colonne(s) à l'index" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Créer un index sur une seule colonne" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Créer un index sur plusieurs colonnes" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Autres colonnes formant l'index :" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Veuillez sélectionner les colonnes de l'index." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Vous devez ajouter au moins une colonne." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Aperçu SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simuler la requête" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Lignes correspondantes :" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "Requête SQL : " #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Valeurs en Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Le nom de serveur est vide !" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Le nom d'utilisateur est vide !" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Le mot de passe est vide !" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Fermer" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Le modèle a été créé." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Le modèle a été chargé." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Le modèle a été modifié." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Le modèle a été supprimé." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Autres" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Connexions / Processus" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "La configuration locale de la surveillance est incompatible !" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1178,155 +1183,155 @@ msgstr "" "courante ne fonctionnera probablement pas. Veuillez réinitialiser votre " "configuration via le menu Paramètres." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Efficacité du cache de requêtes" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Utilisation du cache de requêtes" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Cache de requêtes utilisé" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Utilisation processeur" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Mémoire système" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Zone d'échange" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Charge moyenne" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Mémoire système" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Mémoire cache" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Mémoire-tampon" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Mémoire libre" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Mémoire utilisée" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Zone d'échange totale" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Zone d'échange en cache" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Zone d'échange utilisée" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Zone d'échange libre" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Octets envoyés" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Octets reçus" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Connexions" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Processus" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "o" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "Eio" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Questions" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Trafic" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Paramètres" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Ajouter graphique à la grille" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Veuillez ajouter au moins une variable à la série !" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1338,47 +1343,47 @@ msgstr "Veuillez ajouter au moins une variable à la série !" msgid "None" msgstr "Aucune" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Reprendre la surveillance" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Mettre la surveillance en pause" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Lancer l'actualisation automatique" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Arrêter l'actualisation automatique" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log et slow_query_log sont activés." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log est activé." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log est activé." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "general_log et slow_query_log sont désactivés." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output n'est pas réglé à TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output est réglé à TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1389,12 +1394,12 @@ msgstr "" "prennent plus de %d secondes. Il est recommandé de régler long_query_time à " "0-2 secondes, selon votre système." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time est réglé à %d seconde(s)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1403,30 +1408,30 @@ msgstr "" "défaut lors du rémarrage du serveur : " #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Régler log_output à %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Activer %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Désactiver %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Régler long_query_time à %d secondes." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1434,61 +1439,61 @@ msgstr "" "Vous ne pouvez changer ces variables. Connectez-vous en tant que root ou " "contactez l'administrateur du serveur." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Changer les paramètres" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Titre du graphique" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Différentiel" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Divisé par %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unité" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Depuis le journal des requêtes lentes" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Depuis le journal général" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Le nom de la base de données n'est pas connu pour cette requête dans les " "logs du serveur." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analyse des journaux en cours" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" "Analyse et chargement des journaux en cours. Ceci peut prendre un certain " "temps." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Annuler la requête" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1499,7 +1504,7 @@ msgstr "" "de regroupement, donc les autres propriétés des requêtes, comme l'heure de " "début, peuvent différer." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1508,31 +1513,31 @@ msgstr "" "Puisque le groupement des requêtes INSERT a été sélectionné, les requêtes " "INSERT vers une même table sont groupées, peu importe les données insérées." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Fichier journal chargé. Requêtes exécutées dans ce laps de temps : " -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Aller à la table du journal" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Aucune donnée" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "Journal analysé, mais aucune donnée trouvée pour ce laps de temps." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analyse en cours…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Expliquer les résultats" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1540,7 +1545,7 @@ msgstr "Expliquer les résultats" msgid "Status" msgstr "État" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1550,58 +1555,58 @@ msgstr "État" msgid "Time" msgstr "Moment" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Temps total : " -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profilage des résultats" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Table" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Tableau" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Options de filtrage de la table journal" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtre" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtrer les requêtes par mot ou expression régulière : " -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Grouper les requêtes en ignorant la partie variable des clauses WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Somme des lignes regroupées : " -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total : " -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Chargement des journaux en cours" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Échec de rafraîchissement de la surveillance" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1610,28 +1615,28 @@ msgstr "" "Le serveur a retourné une réponse invalide. Votre session a probablement " "expiré. Veuillez recharger la page et vous connecter à nouveau." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Recharger la page" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Lignes modifiées : " -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Échec d'analyse du fichier de configuration. Il ne contient pas de code JSON " "valide." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Échec de construction du graphique avec la configuration importée. " "Réinitialisation à la configuration par défaut…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1641,59 +1646,59 @@ msgstr "" msgid "Import" msgstr "Importer" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importer la configuration de surveillance" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Veuillez choisir le fichier à importer." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Aucun fichier disponible sur le serveur pour une importation !" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analyser la requête" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Conseiller" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Impact de performance possible" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problème" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Recommandation" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Détails de règle" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Alignement" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Variable / formule utilisée" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Formatage SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1704,59 +1709,59 @@ msgstr "Formatage SQL…" msgid "Cancel" msgstr "Annuler" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Paramètres liés à la page" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Appliquer" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Chargement en cours…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Requête abandonnée !" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Requête en traitement" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Échec de cette requête !" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Code d'erreur : %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Texte de l'erreur : %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Aucune base de données n'a été sélectionnée." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Suppression de la colonne" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Ajout de clé primaire" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1766,55 +1771,55 @@ msgstr "Ajout de clé primaire" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Cliquer pour éliminer ce message" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Changement de nom de la base de données" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Copie de la base de données" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Changement du jeu de caractères" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Activer la vérification des clés étrangères" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Impossible d'obtenir le nombre réel de lignes." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "En recherche" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Cacher les résultats de recherche" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Afficher les résultats de recherche" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Affichage en cours" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Destruction en cours" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1831,43 +1836,43 @@ msgstr "La définition d'une fonction doit comporter un énoncé RETURN !" msgid "Export" msgstr "Exporter" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Éditeur ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Valeurs pour la colonne %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Valeurs pour une nouvelle colonne" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Saisir chaque valeur dans un champ séparé." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Ajouter %d valeur(s)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Note : si le fichier contient plusieurs tables, elles seront combinées." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Cacher zone SQL" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1881,7 +1886,7 @@ msgstr "Montrer zone SQL" msgid "Edit" msgstr "Modifier" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1893,41 +1898,41 @@ msgstr "Modifier" msgid "Delete" msgstr "Effacer" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d n'est pas un numéro de ligne valable." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Aucune requête sauvegardée automatiquement" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variable %d :" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Choisir" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Sélecteur de colonne" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Chercher dans cette liste" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1937,15 +1942,15 @@ msgstr "" "centrales pour la base de données %s comporte des colonnes qui ne sont pas " "présentes dans la table actuelle." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Plus" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Êtes-vous certain ?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1953,51 +1958,51 @@ msgstr "" "Cette action peut changer certaines définitions de colonnes.
Êtes-vous " "sûr de vouloir continuer ?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Continuer" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Ajouter une clé primaire" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Une clé primaire a été ajoutée." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Vous êtes redirigé vers l'étape suivante…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "La première étape de la normalisation est terminée pour la table «%s»." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Fin d'étape" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Deuxième étape de la normalisation (2FN)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Fermer" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Confirmer les dépendances partielles" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Les dépendances partielles sélectionnées sont les suivantes :" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2005,21 +2010,21 @@ msgstr "" "Remarque: a, b -> d, f implique que les valeurs des colonnes a et b " "combinées peuvent déterminer les valeurs des colonnes d et f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Pas de dépendances partielles sélectionnées !" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Montrez-moi les dépendances partielles possibles en se basant sur les " "données de la table" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Masquer la liste des dépendances partielles" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2027,167 +2032,168 @@ msgstr "" "Soyez patient ! Cela peut prendre quelques secondes selon la taille des " "données et le nombre de colonnes de la table." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Étape" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Les actions suivantes seront effectuées :" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "Supprimer les colonnes %s de la table %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Créer la table suivante :" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Troisième étape de la normalisation (3FN)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Confirmer les dépendances transitives" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Les dépendances sélectionnées sont les suivantes :" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Aucune dépendance sélectionnée !" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sauvegarder" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Cacher les critères de recherche" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Recherche en intervalle" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Maximum pour la colonne :" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Valeur minimum pour la colonne :" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Valeur minimum :" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Valeur maximum :" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Cacher les critères de recherche et remplacement" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Afficher les critères de recherche et remplacement" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Chaque point représente une ligne de données." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Survoler un point montrera sa description." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Pour zoomer, sélectionnez une section avec la souris." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Cliquez le lien «Réinitialiser zoom» pour revenir à l'état original." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Cliquez sur un point pour visualiser et possiblement éditer la ligne de " "données." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "L'image peut être redimensionnée en faisant glisser le coin inférieur droit." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Sélectionnez deux colonnes" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Sélectionnez deux colonnes différentes" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Copier" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Point" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Ligne" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polygone" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Géométrie" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Anneau intérieur" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Anneau extérieur" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Voulez-vous copier la clé de cryptage ?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Clé de cryptage" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2195,24 +2201,24 @@ msgstr "" "Indique que vous avez fait des modifications à cette page; on vous demandera " "confirmation avant d'abandonner les modifications" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Veuillez choisir la clé primaire ou un index unique !" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Colonne descriptive" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2220,77 +2226,77 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer ?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Nom de la page" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sauvegarder la page" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Sauvegarder la page en tant que" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ouvrir la page" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Supprimer la page" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sans titre" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Veuillez sélectionner une page pour continuer" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Veuillez saisir un nom de page valide" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Voulez-vous enregistrer les modifications dans la page en cours ?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "La page a été correctement supprimée" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Exporter un schéma relationnel" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ajouter une option pour la colonne «%s»." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objet(s) créé(s)." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Exécuter" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Appuyez sur la touche d'échappement pour annuler l'édition." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2298,15 +2304,15 @@ msgstr "" "Vous avez modifier des données non encore sauvegardées, êtes vous sûr de " "vouloir quitter cette page avant de sauvegarder ?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Faire glisser pour réordonner." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Cliquer pour trier les résultats sur cette colonne." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2316,26 +2322,26 @@ msgstr "" "ASC/DESC.
- Ctrl + clic ou Alt + clic (sur Mac : Maj + Option + Clic) " "pour enlever la colonne de la clause ORDER BY" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Cliquer pour marquer/enlever les marques." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Double-cliquez pour copier le nom de la colonne." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Tout afficher" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2344,13 +2350,13 @@ msgstr "" "cases à cocher ainsi que les liens Edition, Copie et Supprimer pourrait ne " "plus fonctionner après prise en compte de la modification." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Veuillez saisir une chaîne en hexadécimal valide. Les caractères possibles " "sont 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2358,132 +2364,132 @@ msgstr "" "Voulez-vous vraiment voir toutes les lignes ? Pour une grande table, cela " "pourrait faire planter le navigateur." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Longueur originale" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "annuler" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Arrêts prématurés" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Succès" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "État de l'importation" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Déposez des fichiers ici" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Choisissez d'abord une base de données" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Vous pouvez aussi modifier la plupart des valeurs
en double-cliquant " "directement sur celles-ci." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Vous pouvez aussi modifier la plupart des valeurs
en cliquant " "directement sur celles-ci." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Suivre le lien :" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Copier le nom de la colonne." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Faites un clic-droit sur le nom de la colonne pour le copier vers le presse-" "papier." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Générer" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "plus" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Montrer le panneau" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Cacher le panneau" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Montrer les éléments de navigation cachés." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Relier au panneau principal" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Supprimer la liaison au panneau principal" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Pour filtrer toutes les bases de données sur le serveur, appuyez sur Entrée " "après un terme de recherche" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Pour filtrer tous les %s dans la base de données, appuyez sur Entrée après " "un terme de recherche" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "tables" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "vues" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "procédures" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "événements" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "fonctions" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La page demandée n'existe pas dans l'historique, elle peut avoir expiré." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2493,28 +2499,28 @@ msgstr "" "une mise à niveau. La version la plus récente est %s, publiée le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", dernière version stable : " -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "à jour" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Créer une vue" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Envoyer le rapport d'erreurs" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Soumettre un rapport d'erreurs" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2522,15 +2528,15 @@ msgstr "" "Une erreur JavaScript fatale s'est produite. Désirez-vous envoyer un rapport " "d'erreur ?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Changer les paramètres du rapport" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Montrer les détails du rapport" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2538,7 +2544,7 @@ msgstr "" "Votre exportation est incomplète en raison d'une limite de temps d'exécution " "trop basse au niveau PHP !" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2548,61 +2554,61 @@ msgstr "" "l'envoi, certains des champs pourraient être ignorés, en raison de la " "configuration max_input_vars de PHP." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Des erreurs ont été détectées sur le serveur !" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Veuillez regarder au bas de cette fenêtre." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignorer tout" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Selon vos paramètres, ils sont actuellement soumis, veuillez patienter." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Exécuter cette requête à nouveau ?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Voulez-vous vraiment supprimer ce signet ?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" "Une erreur s'est produite lors de l'obtention des informations de débogage " "SQL." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s requêtes exécutées %s fois en %s secondes." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s arguments passés" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Montrer les arguments" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Cacher les arguments" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Temps nécessaire :" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2613,331 +2619,331 @@ msgstr "" "fonctionner correctement pour vous. Dans Safari, ce problème est souvent " "causée par le « Mode de navigation privée »." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Précédent" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Janvier" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Février" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Mars" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Avril" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mai" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Juin" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Juillet" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Août" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Septembre" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Octobre" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Novembre" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Décembre" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Lundi" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Heure" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minute" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Seconde" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Ce champ est obligatoire" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Corrigez ce champ" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Veuillez saisir une adresse courriel valide" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Veuillez saisir une URL valide" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Veuillez saisir une date valide" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Veuillez saisir une date valide (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Veuillez saisir un nombre valide" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Veuillez saisir un numéro de carte de crédit valide" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Veuillez saisir uniquement des chiffres" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Veuillez saisir la même valeur à nouveau" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Veuillez saisir au maximum {0} caractères" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Veuillez saisir au moins {0} caractères" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Veuillez saisir une valeur d'une longueur entre {0} et {1} caractères" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Veuillez saisir une valeur entre {0} et {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Veuillez saisir une valeur inférieure ou égale à {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Veuillez saisir une valeur supérieure ou égale à {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Veuillez saisir une date ou une heure valide" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Veuillez saisir une valeur hexadécimale valide" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3805,7 +3811,7 @@ msgstr "Index" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Action" @@ -3816,8 +3822,8 @@ msgid "Keyname" msgstr "Nom de l'index" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3849,9 +3855,9 @@ msgstr "Interclassement" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Commentaire" @@ -3866,14 +3872,14 @@ msgstr "L'index %s a été effacé." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Supprimer" @@ -3987,7 +3993,7 @@ msgstr "Suivi" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4681,23 +4687,31 @@ 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:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" +"Stocke et permet un accès efficace aux données dans les documents JSON (" +"JavaScript Object Notation)" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numérique" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Contient la date et l'heure" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Chaîne de caractères" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -4846,7 +4860,7 @@ msgstr "Utiliser cette valeur" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Lignes" @@ -4929,7 +4943,7 @@ msgstr "NON" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nom" @@ -8030,7 +8044,8 @@ msgid "No data to display" msgstr "Rien à afficher" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8064,33 +8079,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "L'identifiant '%s' est un mot-clé MySQL réservé." msgstr[1] "Les identifiants '%s' sont des mots-clés MySQL réservés." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Aucune colonne n'a été sélectionnée." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Les colonnes ont été déplacées avec succès." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Erreur de requête" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" "La table %1$s a été modifiée avec succès. Les privilèges ont été ajustés." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Erreur de requête" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifier" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8101,20 +8117,20 @@ msgstr "Modifier" msgid "Index" msgstr "Index" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spatial" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Texte entier" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Valeurs distinctes" @@ -9546,7 +9562,7 @@ msgstr "Nouveau déclencheur" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Vues" @@ -10036,32 +10052,32 @@ msgid "Delete the table (DROP)" msgstr "Supprimer la table (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Vérifier" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimiser" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Reconstruire" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Réparer" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Tronquer" @@ -10079,6 +10095,7 @@ msgid "Partition %s" msgstr "Partition %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Supprimer le partitionnement" @@ -10293,7 +10310,7 @@ msgstr "Options d'exportation" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Contenu de la table" @@ -10317,21 +10334,21 @@ msgstr "Définition" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Structure de la table" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Structure de la vue" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Doublure de structure pour la vue" @@ -10421,7 +10438,7 @@ msgid "Database:" msgstr "Base de données : " #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Données : " @@ -10523,7 +10540,7 @@ msgid "Data creation options" msgstr "Options de création de données" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Vider la table avant d'insérer" @@ -10609,7 +10626,7 @@ msgstr "Il semble que votre base de données utilise des procédures;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" "l'exportation d'alias peut ne pas fonctionner de manière fiable dans tous " @@ -10676,24 +10693,24 @@ msgstr "AUTO_INCREMENT pour les tables exportées" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pour la table" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "TYPES MIME POUR LA TABLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS POUR LA TABLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Il semble que votre table utilise des déclencheurs;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structure de la vue %s exportée comme un table" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Erreur de lecture des données : " @@ -12391,7 +12408,6 @@ msgid "User group" msgstr "Groupe d'utilisateurs" #: libraries/server_privileges.lib.php:730 -#| msgid "Does not requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Ne nécessite pas de connexions SSL chiffrées." @@ -14869,7 +14885,7 @@ msgid "Pick from Central Columns" msgstr "Choisissez à partir des colonnes centrales" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Expression" @@ -14883,64 +14899,64 @@ msgstr "en premier" msgid "after %s" msgstr "après %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "Partitionner par :" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "Expression ou liste de colonnes" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "Partitions :" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "Sous-partitionner par :" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "Sous-partitions :" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "Partition" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "Valeurs" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "Sous-partition" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "Moteur" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "Répertoire de données" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "Répertoire d'index" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "Nombre maximum de lignes" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "Nombre minimum de lignes" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "Espace de table" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "Groupe de noeuds" @@ -15665,26 +15681,42 @@ msgid "at beginning of table" msgstr "en début de table" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Partitions" #: templates/table/structure/display_partitions.phtml:7 +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Aucun partitionnement n'est défini !" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Partitionné par :" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Sous-partitionné par :" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Taille des données" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Taille de l'index" +#: templates/table/structure/display_partitions.phtml:134 +#| msgid "Partition by:" +msgid "Partition table" +msgstr "Partitionner la table :" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Modifier le partitionnement" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Modifier la vue" diff --git a/po/fy.po b/po/fy.po index 10fe8e23d1..afa3325a99 100644 --- a/po/fy.po +++ b/po/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-04-15 22:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Frisian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Bewarje & slute" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Ferfarskje" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset" msgid "Reset all" msgstr "Ferfarskje" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Yndeks tafoegje" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Yndeks bewurkje" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL-query:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y-wearden" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Slute" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Oare" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1102,163 +1106,163 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System swap" msgid "System CPU usage" msgstr "Systeemwikseltriem" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Systeemûnthâld" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Systeemwikseltriem" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Totaal ûnthâld" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Totaal wikseltriem" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "System swap" msgid "Used swap" msgstr "Systeemwikseltriem" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "System swap" msgid "Free swap" msgstr "Systeemwikseltriem" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Ferbinings" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabel(len)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Questions" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Ferkear" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Ynstellingen" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1270,47 +1274,47 @@ msgstr "" msgid "None" msgstr "Gjin" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1318,136 +1322,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Hjoeddeistige ynstellingen" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Grafyktitel" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Ferskil" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Ienheid" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Gjin gegevens fûn" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1455,7 +1459,7 @@ msgstr "" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1465,82 +1469,82 @@ msgstr "Status" msgid "Time" msgstr "Tiid" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Totale tiid:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Grafyk" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Totaal:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1550,61 +1554,61 @@ msgstr "" msgid "Import" msgstr "Ymportearje" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyze" msgid "Analyse query" msgstr "Analysearje" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Probleem" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Rjochtfeardiging" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1615,61 +1619,61 @@ msgstr "" msgid "Cancel" msgstr "Annulearje" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Tapasse" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Flaterkoade: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Flateromskriuwing: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1679,61 +1683,61 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Search in database" msgid "Renaming databases" msgstr "Sykje yn de database" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "No databases" msgid "Copying database" msgstr "Gjin databases" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Karakterset" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1750,42 +1754,42 @@ msgstr "" msgid "Export" msgstr "Eksportearje" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1799,7 +1803,7 @@ msgstr "" msgid "Edit" msgstr "Bewurkje" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1811,573 +1815,574 @@ msgstr "Bewurkje" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Fariabel" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Sykje yn dizze list" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Mear" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Binne jo wis?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Klear" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Stap" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Bewarje" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Kolommaksimum:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Minimumwearde:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Maksimumwearde:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometry" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Fersiferingskaai" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Sidenamme" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Side bewarje" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save page" msgid "Save page as" msgstr "Side bewarje" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Ferstjoere" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "annulearje" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Wachtwurd generearje" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generearje" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Mear" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Table comments" msgid "Show panel" msgstr "Tabelopmerkings" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Main panel" msgid "Hide panel" msgstr "Haadpaniel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tabellen" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Overview" msgid "views" msgstr "Oersjoch" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Prosedueres" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "event" msgid "events" msgstr "barren" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Funksjes" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2385,447 +2390,447 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverpoarte" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverpoarte" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabelopmerkings" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Folgjende" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Hjoed" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "jannewaris" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "febrewaris" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "maart" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "april" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "maaie" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "juny" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "july" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "augustus" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "septimber" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "oktober" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "novimber" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "desimber" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "des" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "snein" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "moandei" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "tiisdei" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "woansdei" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "tongersdei" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "freed" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "sneon" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "si" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "ti" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "to" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "fr" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "so" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "si" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Wike" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Oere" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minút" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekonde" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Search in database" msgid "Please enter a valid date" msgstr "Sykje yn de database" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3692,7 +3697,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Aksje" @@ -3703,8 +3708,8 @@ msgid "Keyname" msgstr "Kaainamme" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3736,9 +3741,9 @@ msgstr "Kollaasje" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Opmerking" @@ -3753,14 +3758,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Fuortsmite" @@ -3870,7 +3875,7 @@ msgstr "Trasearje" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4494,23 +4499,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numeryk" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Datum en tiid" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Romtlik" @@ -4662,7 +4673,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rigen" @@ -4743,7 +4754,7 @@ msgstr "NEE" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Namme" @@ -7556,7 +7567,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7592,32 +7604,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Queryflater" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Queryflater" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Feroarje" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7628,20 +7641,20 @@ msgstr "Feroarje" msgid "Index" msgstr "Yndeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Romtlik" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Folsleine tekst" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Underskiedbere wearden" @@ -8994,7 +9007,7 @@ msgstr "Nij" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9432,32 +9445,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analysearje" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Kontrolearje" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimalisearje" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Reparearje" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9477,6 +9490,7 @@ msgid "Partition %s" msgstr "Partysje %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9681,7 +9695,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9705,21 +9719,21 @@ msgstr "Definysje" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tabelstruktuer foar tabel" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9809,7 +9823,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Gegevens:" @@ -9908,7 +9922,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9978,7 +9992,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10045,24 +10059,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13889,7 +13903,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -13905,84 +13919,84 @@ msgstr "earste" msgid "after %s" msgstr "nei %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Partition %s" msgid "Partition by:" msgstr "Partysje %s" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Partysje %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Partition %s" msgid "Subpartition by:" msgstr "Partysje %s" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Partition %s" msgid "Subpartitions:" msgstr "Partysje %s" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Partysje %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Wearde" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Partition %s" msgid "Subpartition" msgstr "Partysje %s" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "dictionary" msgid "Data directory" msgstr "wurdboek" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "Yndekstype:" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Tables" msgid "Table space" msgstr "Tabellen" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -14700,34 +14714,51 @@ msgid "at beginning of table" msgstr "Oantal tabellen:" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" msgstr "Partysje %s" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 #, fuzzy #| msgid "Partition %s" msgid "Partitioned by:" msgstr "Partysje %s" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Rigelingte" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Rigelingte" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition %s" +msgid "Partition table" +msgstr "Partysje %s" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Edit routine" +msgid "Edit partitioning" +msgstr "Routine bewurkje" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/gl.po b/po/gl.po index a50e7330ce..3e467b19ba 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-16 19:34+0200\n" "Last-Translator: Xosé Calvo \n" "Language-Team: Galician " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -995,161 +1001,161 @@ msgstr "" "Confirma que desexa cambiar todas as ordenacións alfabéticas das columnas e " "converter os datos?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Gardar e pechar" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Reiniciar" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Restaurar todo" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Falta un valor no formulario!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Seleccione ao menos unha das opcións!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Introduza un número aceptábel!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Introduza un tamaño aceptábel!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Engadir un índice" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Editar o índice" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Engadir %s columna(s) ao índice" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Crear un índice dunha única columnar" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Crear un índice composto" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Compor con:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Seleccione a(s) columna(s) do índice." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Debe engadir ao menos unha columna." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Visualización do SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simular a consulta" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Filas coincidentes:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "Consulta de SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Valores Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "O nome do servidor está baleiro!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "O nome do usuario está baleiro!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "O contrasinal está baleiro!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Os contrasinais non son iguais!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "A eliminar os usuarios escollidos" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Fechar" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Creouse un modelo." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Cargouse o modelo." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Actualizouse o modelo." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Eliminouse o modelo." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Conexións/Procesos" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "A configuración local de monitorización é incompatible!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1161,155 +1167,155 @@ msgstr "" "moi probábel que a configuración actual non funcione máis. Restaure a " "configuración ao predeterminado no menú Configuración." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Eficiencia da caché das consultas" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Uso da caché das consultas" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Caché das consultas usada" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Uso da CPU do sistema" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Memoria do sistema" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Memoria de intercambio do sistema" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Carga media" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memoria caché" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memoria de buffer" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memoria libre" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memoria usada" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Memoria de intercambio total" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Intercambio en caché" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Intercambio usado" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Intercambio libre" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes enviados" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Conexións" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Procesos" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d táboa(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Preguntas" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Tráfico" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Configuración" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Engadir unha gráfica á grella" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Engádalle ao menos unha variábel á serie!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1321,47 +1327,47 @@ msgstr "Engádalle ao menos unha variábel á serie!" msgid "None" msgstr "Ningunha" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Recomezar a monitorización" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Deter a monitorización" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Deter a actualización automática" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query_log están activas." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log está activa." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log está activa." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log están desactivadas." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output non está definido como TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output está definido como TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1372,12 +1378,12 @@ msgstr "" "máis que %d segundos. É recomendábel establecer o long_query_time a 0-2 " "segundos, dependendo do sistema." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time está estabelecido en %d segundo(s)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1386,30 +1392,30 @@ msgstr "" "restaurados aos valores predeterminados ao reiniciar o servidor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Configurar «log_output» a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Activar %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Desactivar %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Definir long_query_time como %ds segundos." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1417,59 +1423,59 @@ msgstr "" "Vostede non pode cambiar estas variábeis. Identifíquese como root ou " "contacte co seu administrador." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Cambiar a configuración" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Configuración actual" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Título da gráfica" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Diferencial" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Dividido por %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unidade" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Do rexistro de consultas lento" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Do rexistro de consultas xeral" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "O nome da base de datos é descoñecido para esta consulta nos rexistros do " "servidor." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "A analizar os rexistros" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "A analizar e cargar os rexistros. Isto pode tardar un anaco." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Cancelar a petición" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1480,7 +1486,7 @@ msgstr "" "agrupamento, polo que outros atributos das consultas, como o tempo de " "inicio, poden ser diferentes." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1489,34 +1495,34 @@ msgstr "" "Dado que se escolleu agrupar as consultas INSERT, tamén se agrupan estas na " "mesma táboa, sen ter en conta os datos inseridos." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Os datos do Rexistro foron cargados. Consultas executadas neste período de " "tempo:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Ir á táboa de rexistro" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Non se atoparon datos" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Analizouse o rexistro mais non se atoparon datos neste intervalo de tempo." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "A analizar…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Explicar a saída" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1524,7 +1530,7 @@ msgstr "Explicar a saída" msgid "Status" msgstr "Estado" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1534,58 +1540,58 @@ msgstr "Estado" msgid "Time" msgstr "Tempo" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Tempo total:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Perfilando os resultados" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Táboa" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Gráfico" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Opcións de filtro da táboa de rexistro" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtro" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtrar as consultas por palabra/expresión regular:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Agrupar as consultas, ignorando os datos variábeis das cláusulas WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Suma das filas agrupadas:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "A cargar os rexistros" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Fallou a anovación do monitor" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1595,28 +1601,28 @@ msgstr "" "novos para a gráfica. O máis probábel é que caducase a sesión. Cargar a " "páxina de novo e identificarse de novo debería valer." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Recargar a páxina" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Filas afectadas:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Fallo analizando o ficheiro de configuración. Non parece ser un código JSON " "válido." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Produciuse un erro ao construír a grella da gráfica coa configuración " "importada. Restáurase a configuración predeterminada…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1626,59 +1632,59 @@ msgstr "" msgid "Import" msgstr "Importar" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importar a configuración do monitor" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Escolla a fila que desexa importar." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Non hai ficheiros dispoñíbeis no servidor para importar!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analizar a consulta" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Sistema de consellos" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Posíbeis erros de rendemento" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problema" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Recomendación" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Detalles da regra" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Xustificación" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Variábel/ fórmula utilizada" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Proba" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "A formatar o SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1689,59 +1695,59 @@ msgstr "A formatar o SQL…" msgid "Cancel" msgstr "Cancelar" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Configuración relacionada coas páxinas" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Aplicar" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "A cargar…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Petición interrompida!!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "A procesar a petición" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Fallou a petición!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Produciuse un erro ao procesar a petición:" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Código de erro: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Texto do erro: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Non hai ningunha base de datos escollida." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "A eliminar a columna" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "A engadir unha chave primaria" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1751,55 +1757,55 @@ msgstr "A engadir unha chave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Prema para descartar esta notificación" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "A renomear as bases de datos" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "A copiar a base de datos" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "A cambiar o xogo de caracteres" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Desactivar as comprobacións de chaves externas" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Non foi posíbel contar o número real de filas." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "A buscar" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Agochar os resultados da busca" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Mostrar os resultados da busca" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "A examinar" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "A eliminar" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "A definición dunha función gardada debe conter unha instrución RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1816,42 +1822,42 @@ msgstr "A definición dunha función gardada debe conter unha instrución RETURN msgid "Export" msgstr "Exportar" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Valores para a columna %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Valores para a nova columna" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Introduza cada valor nun campo separado" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Engadir %d valor(es)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "Nota: Se o ficheiro contén varias táboas, estas combínanse nunha." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Agochar a caixa das consultas" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Mostrar a caixa de consultas" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1865,7 +1871,7 @@ msgstr "Mostrar a caixa de consultas" msgid "Edit" msgstr "Editar" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1877,41 +1883,41 @@ msgstr "Editar" msgid "Delete" msgstr "Eliminar" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d non é un número de fileira válido." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variábel %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Escoller" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Selector de columnas" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Buscar nesta lista" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1921,15 +1927,15 @@ msgstr "" "central da base de datos %s ten columnas que non están presentes na táboa " "actual." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Ver máis" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Confírmao?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1937,51 +1943,51 @@ msgstr "" "Esta acción pode cambiar algunha definición das columnas.
Confirma que " "desexa continuar?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Proseguir" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Engadir unha chave primaria" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Engadiuse unha chave primaria." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Procedemos co paso seguinte…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "O primeiro paso da normalización foi completado para a táboa «%s»." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Fin do paso" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Segundo paso da normalización (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Feito" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Confirmar as dependencias parciais" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "As dependencias parciais seleccionadas son as seguintes:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1989,183 +1995,184 @@ msgstr "" "Nota: a, b -> d,f implica que os valores das columnas a e b combinadas poden " "determinar os valores das columnas de e f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Non se seleccionaron dependencias parciais!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Mostrar as dependencias parciais posíbeis a partir dos datos da táboa" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Agochar a lista de dependencias parciais" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Paso" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Hanse executar as accións seguintes:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINAR (DROP) as columnas %s da táboa %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Crear a táboa seguinte" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Terceiro paso da normalización (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Confirmar as dependencias transitivas" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "As dependencias seleccionadas son as seguintes:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Non hai ningunha dependencia seleccionada!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gardar" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Agochar o criterio de busca" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Mostrar o criterio de busca" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Busca de intervalo" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Máximo de columnas:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Mínimo de columnas:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Valor mínimo:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Valor máximo:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Agochar os criterios de busca e substitución" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Mostrar os criterios de busca e substitución" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Cada punto representa unha fila de datos." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Situar o rato sobre o punto mostra a súa etiqueta." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Par achegarse, escolla unha sección da gráfica co rato." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Prema o botón de restaurar a amplación para voltar o estado orixinal." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Prema nun punto de datos para ver e editar a liña de datos." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Pódese mudar o tamaño da gráfica arrastrándoo polo recanto inferior dereito." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Escoller dúas columnas" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Escolle dúas columnas diferentes" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Contido do punto de datos" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Copiar" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punto" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Cadea de liñas" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polígono" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Xeometría" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Anel interno" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Anel externo:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Desexa copiar a clave de cifrado?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Clave de cifrado" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2173,24 +2180,24 @@ msgstr "" "Indica que vostede fixo cambios nesta páxina; háselle pedir confirmación " "antes de abandonar os cambios" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Escoller a chave referida" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Selecciona a clave primaria ou unha clave única!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Escolla a columna que desexe mostrar" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2198,77 +2205,77 @@ msgstr "" "Non gardou as alteracións da disposición. Hanse perder se non se gardan. " "Desexa continuar?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Nome da páxina" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Gardar a páxina" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Gardar a páxina como" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Abrir páxina" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Eliminar a páxina" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sen título" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Seleccione unha páxina para continuar" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Introduza un nome de páxina aceptábel" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Desexa gardar os cambios desta páxina?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "A páxina foi eliminada correctamente" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Exportar o esquema relacional" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Engadir unha opción para a columna «%s»." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "Creáronse %d obxecto(s)." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Enviar" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Prema escape para cancelar a edición." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2276,15 +2283,15 @@ msgstr "" "Editou algúns datos que aínda non se gardaron. Ten certeza de querer saír " "desta páxina antes de gardar os datos?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Arrastre para reordenar." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Prema para ordenar os resultados por esta columna." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2294,27 +2301,27 @@ msgstr "" "alternar ASC/DESC.
- Ctrl+Clic ou Alt+Clic (Mac: Maiúsculas+Opción" "+Clic) para eliminar a columna da cláusula ORDENAR POR" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Prema para marcar/desmarcar." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Prema dúas veces para copiar o nome da columna." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Prema a frecha para a baixo
para conmutar a visibilidade da columna." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2323,13 +2330,13 @@ msgstr "" "relacionadas coa edición da grecha, caixa de selección, editar, copiar e " "eliminar ligazóns poden non funcionar despois de gravar." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Introduza unha cadea aceptábel en hexadecimal. Os caracteres aceptábeis son " "0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2337,128 +2344,128 @@ msgstr "" "Confirma que desexa ver todas as filas? Se a táboa é grande o navegador " "podería fallar." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Tamaño orixinal" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "cancelar" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Interrompido" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Éxito" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Estado da importación" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Soltar os ficheiros aquí" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Seleccione a base de datos antes" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Tamén se poden editar a maioría dos valores
preméndoas directamente " "dúas veces." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Tamén se poden editar a maioría dos valores
premendo directamente o seu " "contido." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Ir á ligazón:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Copiar o nome da columna:" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Prema co botón dereito para copiar o nome da columna o portarretallos." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Xerar" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Máis" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Mostrar o panel" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Agochar o panel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Mostrar os elementos agochados da árbore de navegación." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Ligar co panel principal" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Desligar do panel principal" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Para filtrar todas as bases de datos do servidor prema Intro despois dun " "termo de busca" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "táboas" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "vistas" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "procedementos" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "acontecementos" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funcións" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Non foi posíbel atopar a páxina pedida no historial; pode que caducase." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2468,43 +2475,43 @@ msgstr "" "A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ",última versión estable:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "actualizada" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Crear unha vista" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Enviar un informe de erro" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Entregar o informe de erro" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Produciuse un erro global de JavaScript. Desexa enviar un informe do erro?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Cambiar a configuración dos informes" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Mostrar os detalles do informe" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2512,396 +2519,396 @@ msgstr "" "A exportación está incompleta debido a un límite de tempo de execución baixo " "no nivel de PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Detectáronse algúns erros no servidor!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Mire na parte inferior desta xanela." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignorar todo" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Executar esta consulta de novo?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Confirma que desexa eliminar este marcador?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s veces en %s segundos." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "Paráronse %s argumento(s)" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Mostrar os argumentos" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Agochar os argumentos" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Tempo que levou:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Hoxe" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Xaneiro" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Febreiro" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Marzo" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Abril" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Maio" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Xuño" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Xullo" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Agosto" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Setembro" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Outubro" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Novembro" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dec" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Luns" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Mércores" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Xoves" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Venres" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "X" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Sm" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendario-mes-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Hora" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minuto" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Segundo" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Este campo é obrigatorio" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Arranxe este campo" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Introduza un enderezo de correo aceptábel" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Introduza un URL aceptábel" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Introduza unha data aceptábel" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Introduza unha data aceptábel (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Introduza un número aceptábel" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Introduza un número de tarxeta de crédito aceptábel" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Introduza unicamente díxitos" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Introduza o mesmo valor de novo" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Non introduza máis de {0} caracteres" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Introduza ao menos {0} caracteres" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Introduza un valor entre {0} e {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Introduza valores inferiores ou iguais a {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Introduza un valor maior ou igual a {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Introduza unha data ou hora aceptábeis" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Introduza unha entrada hexadecimal aceptábel" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3775,7 +3782,7 @@ msgstr "Índices" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Acción" @@ -3786,8 +3793,8 @@ msgid "Keyname" msgstr "Nome da chave" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3819,9 +3826,9 @@ msgstr "Orde alfabética" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Comentario" @@ -3836,14 +3843,14 @@ msgstr "Eliminouse o índice %s." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Eliminar" @@ -3955,7 +3962,7 @@ msgstr "Seguimento" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4656,23 +4663,29 @@ msgstr "Unha colección de polígonos" msgid "A collection of geometry objects of any type" msgstr "Unha colección de obxectos xeométricos de calquera tipo" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numérico" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Data e hora" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Cadea" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Espacial" @@ -4824,7 +4837,7 @@ msgstr "Usar este valor" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Filas" @@ -4907,7 +4920,7 @@ msgstr "NON" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nome" @@ -8228,7 +8241,8 @@ msgid "No data to display" msgstr "Non hai datos que mostrar" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8273,33 +8287,34 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "O nome de columna «%s» é unha palabra chave reservada do MySQL." msgstr[1] "O nome de columna «%s» é unha palabra chave reservada do MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Non seleccionou ningunha columna." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Movéronse as columnas satisfactoriamente." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Hai un erro na consulta" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Alterouse a táboa %1$s sen problemas." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Hai un erro na consulta" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Mudar" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8310,20 +8325,20 @@ msgstr "Mudar" msgid "Index" msgstr "Índice" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Espacial" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Texto completo" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Valores diferentes" @@ -9825,7 +9840,7 @@ msgstr "Novo" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Vistas" @@ -10289,32 +10304,32 @@ msgid "Delete the table (DROP)" msgstr "Eliminar a táboa (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analizar" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Comprobar" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimizar" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Reconstruír" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Arranxar" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10334,6 +10349,7 @@ msgid "Partition %s" msgstr "Partición %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Eliminar particións" @@ -10553,7 +10569,7 @@ msgstr "Opcións de envorcado dos datos" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "A extraer os datos da táboa" @@ -10577,21 +10593,21 @@ msgstr "Definición" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Estrutura da táboa" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Estrutura para a vista" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Estrutura existente para a vista" @@ -10681,7 +10697,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Datos:" @@ -10791,7 +10807,7 @@ msgid "Data creation options" msgstr "Opcións de creación de datos" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Baleirar a táboa antes de inserir" @@ -10880,7 +10896,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10956,25 +10972,25 @@ msgstr "Non empregar AUTO_INCREMENT cos valores cero" msgid "AUTO_INCREMENT for table" msgstr "Engadir o valor incremental (AUTO_INCREMENT)" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "TIPOS MIME PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELACIÓNS PARA A TÁBOA" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Estrutura para a vista" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Produciuse un erro ao ler os datos:" @@ -15385,7 +15401,7 @@ msgid "Pick from Central Columns" msgstr "Eliminar columna(s)" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15401,92 +15417,92 @@ msgstr "Primeiro" msgid "after %s" msgstr "despois de %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "particionado" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Valores para a columna %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Partición %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "particionado" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "particionado" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Partición %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Valor" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "particionado" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Motores" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Directorio base dos datos" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Directorio de gardado" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Filas coincidentes:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Visualizar" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "Busca na táboa" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -16291,7 +16307,7 @@ msgid "at beginning of table" msgstr "No comezo da táboa" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16299,28 +16315,47 @@ msgstr "Partición %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Non se definiu ningún índice!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "particionado" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "particionado" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Lonxitude das fileiras" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Lonxitude das fileiras" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "particionado" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Eliminar particións" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Editar a vista" diff --git a/po/he.po b/po/he.po index 189deb7160..a602f390f0 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-07-28 16:36+0200\n" "Last-Translator: Moshe Harush \n" "Language-Team: Hebrew " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "שמירה כקובץ" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "איפוס" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "בחירת הכול" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "ערך ריק בטופס!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "לפחות אחת מהמילים" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "הוספת שדה חדש" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "עריכת האינדקס" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "הוספת %s עמודות לאינדקס" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "גרסת שרת" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "גרסת שרת" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "שדות מוקפים ע\"י" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "הוספת %s עמודות לאינדקס" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "אתה חייב להוסיף לפחות שדה אחד." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "בשאילתה" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "שבת" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "שאילתת SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "ערך" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "שם המארח ריק!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "שם המשתמש ריק!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "הססמה ריקה!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "הססמאות אינן זהות!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "הסרת המשתמש הנבחרים" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "סגירה" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "טבלה %s נמחקה" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "הפרופיל עודכן בהצלחה." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "השורה נמחקה" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "אחר" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "חיבורים / תהליכים" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1213,172 +1219,172 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy msgid "Query cache efficiency" msgstr "סוג שאילתה" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "זיכרון מטמון בשימוש" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "שאילתות מטמון בשימוש" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "שימוש במערכת ה-CPU" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "זיכרון מערכת" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "טעינה בממוצע" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "סה\"כ זיכרון" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "זיכרון פנוי" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "זיכרון בשימוש" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "סה\"כ" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "שימוש מקום" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "דפים חופשיים" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "בתים נשלחו" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "התקבל" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "חיבורים" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "תהליכים" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s טבלאות" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Persian" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "תעבורה" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "אנא הוסף לפחות משתנה אחד לסידרה" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1390,47 +1396,47 @@ msgstr "אנא הוסף לפחות משתנה אחד לסידרה" msgid "None" msgstr "ללא" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output מוגדר ל-TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1438,153 +1444,153 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "שמירה כקובץ" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "מופעל" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "מבוטל" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "שאילתה לקחה %01.4f שניות" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "קבצי ייבוא" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "מקומי" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy msgid "Cancel request" msgstr "בקשות כתיבה" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "אין מאגרי נתונים" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "אין מאגרי נתונים" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "הסברת SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1592,7 +1598,7 @@ msgstr "הסברת SQL" msgid "Status" msgstr "מצב" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1602,99 +1608,99 @@ msgstr "מצב" msgid "Time" msgstr "זמן" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "סה\"כ" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "תוצאת SQL" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "טבלה" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "קידוד" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "אפשרויות טבלה" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "מספר שדות" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "סה\"כ" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "מקומי" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1705,67 +1711,67 @@ msgstr "" msgid "Import" msgstr "ייצוא" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Import monitor configuration" msgstr "תצורת מעקב מקומית אינה נתמכת" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "עדכון שאילתה" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "תיעוד" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "תיעוד" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1776,71 +1782,71 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "מקומי" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "תהליכים" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy msgid "Request failed!!" msgstr "סוג שאילתה" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "תהליכים" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "בתוך העמודה:" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "הוספת %s תאים" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1850,69 +1856,69 @@ msgstr "הוספת %s תאים" msgid "OK" msgstr "אישור" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "שינוי שם מאגר נתונים אל" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "העתקת מאגר נתונים אל" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "קידוד" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "חיפוש" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "שאילתת SQL" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "שאילתת SQL" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "עיון" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "מוחק %s" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1929,45 +1935,45 @@ msgstr "" msgid "Export" msgstr "יצוא" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "מספר שדות" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "הוספת משתמש חדש" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "שאילתת SQL" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "שאילתת SQL" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1981,7 +1987,7 @@ msgstr "שאילתת SQL" msgid "Edit" msgstr "עריכה" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1993,96 +1999,96 @@ msgstr "עריכה" msgid "Delete" msgstr "מחיקה" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "משתנה" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "לא נבחרו שורות" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "חיפוש במסד הנתונים" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "זיכרון פנוי" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "תורם" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "מפתח ראשי נוסף אל %s" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "דוח המעקב" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2090,550 +2096,551 @@ msgstr "" msgid "End of step" msgstr "בסוף טבלה" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "אף מאגר נתונים לא נבחר." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "שמירה" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "שאילתת SQL" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "חיפוש" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "שמות עמודה" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "שמות עמודה" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "שאילתת SQL" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "הוספת/מחיקת עמודות שדה" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "תוכן עניניים" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "העתקה" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "נקודה" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "מחרוזת שורה" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "מצולע" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "פני השטח" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "טבעת פנימית" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "טבעת חיצונית:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "מספר דף:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "בחירת הכל" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "בחירת הכל" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "דפים חופשיים" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "בחירת הכל" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "אנא בחר עמוד לעריכה" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "עריכה או יצוא של תבנית יחסית" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "שינויים נשמרו" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "ערך עבור העמודה „%s“" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "שליחה" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "שמות עמודה" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "הצגת הכול" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "מיקום מקורי" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "בוטל" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "קבצי ייבוא" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "בחירת טבלאות" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "אין מאגרי נתונים" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "שמות עמודה" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "ייצור" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "הצגת הכול" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "הוספת שדה חדש" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "הראה רשת" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy msgid "Link with main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy msgid "Unlink from main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "טבלאות" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "תצוגה" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy msgid "procedures" msgstr "תהליכים" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy msgid "events" msgstr "נשלח" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "פונקציה" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2641,136 +2648,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "קוד שרת (ID)" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "קוד שרת (ID)" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "ראיית טבלאות" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "התעלמות" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "הראה את שאילתה כאן שוב" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "שאילתת SQL" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "הערות לטבלה" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "שאילתת SQL" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "הקודם" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2778,96 +2785,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "מאי" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2875,78 +2882,78 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2954,223 +2961,223 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ללא" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "לשנייה" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "השתמש בשדה טקסט" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4148,7 +4155,7 @@ msgstr "אינדקסים" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "פעולה" @@ -4159,8 +4166,8 @@ msgid "Keyname" msgstr "שם מפתח" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4192,9 +4199,9 @@ msgstr "איסוף" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 #, fuzzy msgid "Comment" msgstr "הערות" @@ -4210,14 +4217,14 @@ msgstr "אינדקס %s הוסר." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "השמטה" @@ -4327,7 +4334,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4990,19 +4997,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "יצירת אינדקס חדש" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Linestring" @@ -5010,7 +5023,7 @@ msgctxt "string types" msgid "String" msgstr "מחרוזת שורה" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5172,7 +5185,7 @@ msgstr "שימוש בערך זה" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "שורות" @@ -5259,7 +5272,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "שם" @@ -8280,7 +8293,8 @@ msgid "No data to display" msgstr "אין מאגרי נתונים" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8320,38 +8334,39 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "לא נבחרו שורות" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy msgid "The columns have been moved successfully." msgstr "%s מסדי נתונים נמחקו בהצלחה." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %s has been moved to %s." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "הטבלה %s הועברה ל- %s." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "סוג שאילתה" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %s has been moved to %s." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "הטבלה %s הועברה ל- %s." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "שינוי" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8362,20 +8377,20 @@ msgstr "שינוי" msgid "Index" msgstr "אינדקס" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -9837,7 +9852,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10305,34 +10320,34 @@ msgid "Delete the table (DROP)" msgstr "אין מאגרי נתונים" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Check" msgstr "צ'יכית" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 #, fuzzy msgid "Repair" msgstr "תיקון טבלה" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10353,6 +10368,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10582,7 +10598,7 @@ msgstr "אפשרויות ייצוא מאגר נתונים" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "הוצאת מידע עבור טבלה" @@ -10609,14 +10625,14 @@ msgstr "תיאור" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "מבנה טבלה עבור טבלה" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10624,7 +10640,7 @@ msgstr "מבנה בלבד" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10739,7 +10755,7 @@ msgid "Database:" msgstr "מסד נתונים" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10855,7 +10871,7 @@ msgid "Data creation options" msgstr "לתבנית זאת אין אפשרויות" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10925,7 +10941,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11000,24 +11016,24 @@ msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" msgid "AUTO_INCREMENT for table" msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "מבנה בלבד" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy msgid "Error reading data:" msgstr "מאפשר מחיקת מידע." @@ -15151,7 +15167,7 @@ msgid "Pick from Central Columns" msgstr "שינוי שם מאגר נתונים אל" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15168,91 +15184,91 @@ msgstr "" msgid "after %s" msgstr "לאחר %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Position" msgid "Partition by:" msgstr "מיקום" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of fields" msgid "Expression or column list" msgstr "מספר שדות" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Position" msgid "Partitions:" msgstr "מיקום" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Position" msgid "Subpartition by:" msgstr "מיקום" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Position" msgid "Subpartitions:" msgstr "מיקום" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Position" msgid "Partition" msgstr "מיקום" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "ערך" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Position" msgid "Subpartition" msgstr "מיקום" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "מנועים" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "תיקיית בית של נתונים" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy msgid "Index directory" msgstr "תיקיית בית של נתונים" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Start" msgid "Max rows" msgstr "שבת" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "עיון" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "חיפוש" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16114,32 +16130,51 @@ msgid "at beginning of table" msgstr "בתחילת טבלה" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Position" msgid "Partitions" msgstr "מיקום" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "אין אינדקסים מוגדרים!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "אורך שורה" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "אורך שורה" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Position" +msgid "Partition table" +msgstr "מיקום" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Add new field" +msgid "Edit partitioning" +msgstr "הוספת שדה חדש" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/hi.po b/po/hi.po index 0052fd0870..d8019c057a 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-14 00:30+0200\n" "Last-Translator: Atul Pratap Singh \n" "Language-Team: Hindi " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "फ़ाइल के रूप में सहेजें" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "रीसेट" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "सभी का चयन करें" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "फॉर्म में सूचना गुम हैं!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "कोई भी एक शब्द" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "अनुक्रमणिका सम्पादित करें" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "%s क्षेत्र जोडें" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "संबंध बनायें" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "संबंध बनायें" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Column names" msgid "Composite with:" msgstr "कोलम के नाम" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "%s क्षेत्र जोडें" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "आपको कम से कम एक स्तंभ प्रदर्शित करने के लिए चयन करना है." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "क्वरी का नवीनीकरण करें" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "प्रभावित पंक्तियाँ:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL क्वरी" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "मूल्य" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "मेज़बान का नाम (hostname) खाली है!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "प्रयोगकर्ता का नाम खाली है!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "कूटशब्द (password) खाली है!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "कूटशब्द (password) समान नहीं हैं!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "चयनित प्रयोक्ताओं को हटायें" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "बंद" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "Page has been created." msgid "Template was created." msgstr "पेज बना दिया गया है" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "प्रोफाइल अपडेट कर दिया ।" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "रौ को डिलीट कर दिया" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "अन्य" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "कनेक्शन / प्रक्रियाएँ" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "स्थानीय जाँच व्यवस्था असंगत" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1192,167 +1198,167 @@ msgstr "" "तारतम्यता नहीं बैठ पा रही है। हो सकता है कि इस सम्बन्ध में आपका वर्तमान प्रारूप अब काम न " "कर पाए। कृपया, सेटिंग्स मेन्यू में जाकर इसे पुनः डिफ़ॉल्ट पर रिसेट करें।" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "क्वॅरी कैश की कार्यक्षमता" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "क्वॅरी कैश प्रयोग" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "काम में ली गई क्वॅरी कैश" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "मशीन सीपीयू उपयोग" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "सिस्टम मेमोरी" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "सिस्टम स्वॅप" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "औसत दबाव" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "कुल मॅमरी" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "गुप्त एकत्र (cached) मॅमरी" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "बफ़र स्मृति" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "मुक्त स्मृति" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "प्रयुक्त स्मृति" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "कुल स्वॅप" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "एकत्र (cached) स्वॅप" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "प्रयुक्त स्वॅप" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "मुक्त स्वॅप" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "बाइट भेजे गए" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "बाइट प्राप्त हुए" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "कनेक्शन" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "प्रक्रियाएँ" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "बिट्स" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "किलोबाइट" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "मेगाबाइट" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "गीगाबाइट" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "टॅराबाइट" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "पॅटाबाइट" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "अॅग्जाबाइट" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d टेबल" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "प्रश्न" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "व्यस्तता" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "सेटिंग्स" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "चार्ट को जाली (grid) पर लगाएँ" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1364,51 +1370,51 @@ msgstr "कृपया, श्रृंखला में कम से कम msgid "None" msgstr "कुछ नहीं" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "देखभाल व्यवस्था को पुनः शुरू करें" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "देखभाल व्यवस्था को एक बार यथास्थिति (pause) रोकें" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" "सामान्य पञ्जिका (general_log) तथा धीमी क्वॅरी पञ्जिका (slow_query_log) समर्थ किये " "गए।" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "सामान्य पञ्जिका (general_log) को समर्थ किया गया।" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "धीमी क्वॅरी पञ्जिका (slow_query_log) को समर्थ किया गया है।" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" "धीमी क्वॅरी पञ्जिका (slow_query_log) तथा सामान्य पञ्जिका (general_log) को निष्क्रिय " "किया गया।" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "टेबल पर पंजिका परिणाम (log_output) सेट नहीं है।" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "टेबल पंजिका परिणाम (log_output) के साथ सेट है।" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1419,12 +1425,12 @@ msgstr "" "में सूचीबद्ध करता है जो %d सेकण्ड्स से ज्यादा समय लेती हैं। अतः आपको सलाह दी जाती है कि " "सिस्टम के अनुरूप अधिक_क्वॅरी_समय (long_query_time) को 0-2 सेकण्ड्स पर सेट कर लें।" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "अधिक_क्वॅरी_समय (long_query_time) को %d सेकण्ड्स पर सेट किया गया।" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1433,31 +1439,31 @@ msgstr "" "डिफ़ॉल्ट पर सेट हो जाएँगी:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "पंजिका परिणाम (log_output) को %s पर सेट करें" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "%s समर्थ करें" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "%s निष्क्रिय करें" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "अधिक_समय_क्वॅरी (long_query_time) को %ds पर सेट करें" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1465,59 +1471,59 @@ msgstr "" "आप इन चरों (variables) को बदलने की स्थिति में नहीं है। कृपया मूल (root) प्रयोक्ता के " "बतौर लोग इन करें या अपने डॅटाबेस प्रबंधक से संपर्क करें।" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "वर्तमान सेटिंग्स" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Default title" msgid "Chart title" msgstr "डिफ़ॉल्ट शीर्षक" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "अवकलित" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "%s से विभाजित" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "इकाई" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "धीमी पंजिका (slow log) से" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "सामान्य पंजिका (general_log) से" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "पंजिका (log) छान-बीन ज़ारी" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "पंजिका की छान-बीन और लोडिंग हो रही है। इसमें थोड़ा वक्त लग सकता है।" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "अनुरोध रद्द करें" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1527,7 +1533,7 @@ msgstr "" "का मापदण्ड इनका SQL पाठ्य ही है अतः क्वॅरीज के अन्य गुणधर्म जैसे शुरुआत का समय आदि भिन्न " "मान लिए हो सकते हैं।" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1537,35 +1543,35 @@ msgstr "" "गयी INSERT क्वॅरीज को भी एकत्रित (group) किया गया है। टेबल में डाले (insert) गए डॅटा " "से इसका कोई सम्बन्ध नहीं है।" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "पंजिका जानकारी लोड हो चुकी है। क्वॅरीज क्रियान्वन में लगा समय:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "सीधे पंजिका टेबल (log table) पर जाएँ" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "कोई डॅटा नहीं पाया गया" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "पंजिका (log) की छान-बीन की गयी, परन्तु इस समय अन्तराल विशेष में कोई डॅटा नहीं पाया " "गया।" -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "विश्लेषण" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "परिणाम को समझाएँ" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1573,7 +1579,7 @@ msgstr "परिणाम को समझाएँ" msgid "Status" msgstr "स्थिति" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1583,61 +1589,61 @@ msgstr "स्थिति" msgid "Time" msgstr "समय" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "कुल समय:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "परिणाम का रूपरेखा बन रही है" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "टेबल" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "चार्ट" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "पंजिका (log) टेबल फ़िल्टर विकल्प" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "फ़िल्टर" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "क्वॅरीज को शब्द / रेग्युलर एक्सप्रेशन के जरिये फ़िल्टर करें:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "WHERE कथन में चर (variable) डॅटा को बिना शामिल किये, क्वॅरीज को एकत्र (group) करें" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "एकत्र (group) पंक्तियों का योग:" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "कुल" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "पंजिका (log) को लोड किया जा रह है" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "देख-रेख तंत्र असफल रहा" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1647,25 +1653,25 @@ msgstr "" "समाप्त हो गयी हो। समाधान के लिए पेज रीलोड करें और अपने परिचय सम्बन्धी जानकारी फिर से " "डालकर देखें।" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "पृष्ठ पुनः लोड करें" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "प्रभावित पंक्तियाँ:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "कॉन्फिग फ़ाईल की को पढ़ पाने असमर्थ। ऐसा प्रतीत होता है कि इसमें मानक JSON कोड नहीं है।" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1675,63 +1681,63 @@ msgstr "" msgid "Import" msgstr "आयात करें" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "देख-रेख (import) विन्यास (configuration) आयात करें" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "जिस फाईल को आयात करना चाहते हैं, उसे चुनें" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "क्वॅरी का विश्लेष्ण करें" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "परामर्श व्यवस्था" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "कार्यक्षमता के सन्दर्भ में संभावित मुद्दे" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "मसला" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "अनुशंसायें" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "नियमों का विवरण" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "औचित्यकरण" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "प्रयुक्त चर (variable) / सूत्र (formula)" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "जाँच" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1742,71 +1748,71 @@ msgstr "" msgid "Cancel" msgstr "रद्द" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "लोड हो रहा है…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "अनुरोध क्रियान्वित हो रहा है" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "क्वेरी कैश" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "कॉलम को हटाया जाना" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "प्राथमिक कुंजी जोड़ें" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1816,65 +1822,65 @@ msgstr "प्राथमिक कुंजी जोड़ें" msgid "OK" msgstr "ठीक है" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "इस सूचना को खारिज़ करने के लिए क्लिक करें" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "डॅटाबेसों का पुनर्नामकारण" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "डॅटाबेस प्रतिलिपिकरण" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "वर्ण समूह बदलाव" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "निष्क्रिय विदेशी कुंजी चेक" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "हेडर को लाने में विफल" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "ख़ोज" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "खोज परिणाम छिपाएँ" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "खोज परिणाम दिखाएँ" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "ब्राउज़िंग" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "मिटाना" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "एक संगृहीत फंक्शन की परिभाषा (definition) में RETURN कथन होना आवश्यक है!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1891,44 +1897,44 @@ msgstr "एक संगृहीत फंक्शन की परिभा msgid "Export" msgstr "निर्यात" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "%s स्तंभ के लिए मूल्य" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "नए स्तंभ के लिए मूल्य" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "हर एक मान अलग क्षेत्र में दर्ज करें" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d मान जोड़ें" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "सूचना: यदि फ़ाईल में एक से अधिक टेबलें हैं तो वे एक में ही संगठित की जाएँगी।" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "क्वॅरी बॉक्स छिपाएँ" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "क्वॅरी बॉक्स दिखाएँ" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1942,7 +1948,7 @@ msgstr "क्वॅरी बॉक्स दिखाएँ" msgid "Edit" msgstr "सम्पादन" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1954,96 +1960,96 @@ msgstr "सम्पादन" msgid "Delete" msgstr "मिटाएँ" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d एक वैध पंक्ति संख्या नहीं है।" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "स्थिति" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "कोई पंक्ति चयनित नहीं" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "डाटाबेस में खोजें" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "मुक्त स्मृति" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "योगदान" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "प्राथमिक कुंजी जोड़ें" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s पर एक प्राईमरी की जड़ी गयी है" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "ट्रैकिंग रिपोर्ट" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2051,260 +2057,261 @@ msgstr "" msgid "End of step" msgstr "लाइन के अंत" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "हो गया" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "निम्नलिखित क्वरीों क्रियान्वित किया गया है" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "कोइ डाटाबेस नहीं चुना गया है।" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "सुरक्षित करें" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ढूंढें" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "कोलम नाम" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "कोलम नाम" -#: js/messages.php:402 +#: js/messages.php:403 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "अधिकतम सारणी" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "ख़ोज मापदंड छिपाएँ" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "खोज मापदंड दिखाएँ" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "प्रत्येक बिन्दु एक डॅटा पंक्ति को बताता है।" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "लेबल देखने के लिए कर्सर बिन्दु के ऊपर लेकर जाएँ।" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "और बारीकी से देखने के लिए पुरे क्षेत्र का कोई भाग माउस से सेलेक्ट करें।" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "पंक्ति को देखने और संभावित सम्पादन के लिए डॅटा बिन्दु पर क्लिक करें।" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "दायीं तरफ नीचे के कोने के साथ पॉइंटर घसीटने पर क्षेत्र के अकार को बदला जा सकता है।" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "दो कॉलम चुने" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "दो भिन्न कॉलम चुनें" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "डॅटा बिन्दु सामग्री" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "उपेक्षा करें" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "प्रतिलिपि करें" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "बिन्दु" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "लाईन समाप्त होता है" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "बहुभुज" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "ज्यामिति" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "आंतरिक वृत्त" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "बाहरी वृत्त:" -#: js/messages.php:445 +#: js/messages.php:446 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "क्या आप शेष सेटिंग्स आयात करना चाहते हैं?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "संदर्भ कुंजी का चयन करें" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "परदेशी कुंजी का चयन करें" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चुनें" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2312,98 +2319,98 @@ msgstr "" "आपने प्रदर्शन में बदलावों को सुरक्षित नहीं किया है। ये बदलाव खो जायेंगे यदि आपने सुरक्षित नहीं " "किया। क्या आप ज़ारी रखना चाहेंगे?" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "पृष्ठ नाम:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "पेज चुनिये" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "पेज चुनिये" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "मुक्त पृष्ठों" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "पेज चुनिये" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "इकाई" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "एडिट करने के लिये पेज़ चुने" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "कॉलम के लिए एक विकल्प जोड़ें " -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "सबमिट" -#: js/messages.php:482 +#: js/messages.php:483 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "सम्पादन को रद्द करने के लिए एस्केप दबाएँ" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2411,49 +2418,49 @@ msgstr "" "आपने कुछ डॅटा को सम्पादित किया है पर सुरक्षित नहीं किया है। क्या आप उन्हें बिना सुरक्षित " "किये आगे बढ़ना चाहेंगे?" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "पुनः व्यवस्थित करने के लिए घसीटें" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "कोलम के नाम" -#: js/messages.php:490 +#: js/messages.php:491 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "कॉलम को दिखने / छुपाने के लिए
ड्रॉप-डाउन तीर पर क्लिक करें" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "सभी दिखाएँ" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2461,163 +2468,163 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "मूल स्थिति" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "रद्द" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "रद्द" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "आयात" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "टेबल चुनिये" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "लिंक पर जाएँ" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "कोलम के नाम" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "नया पासवर्ड उत्पन्न करें" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "उत्पन्न करें" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "अधिक" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "सभी दिखाएँ" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add index" msgid "Hide panel" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "बाईं फ्रेम में लोगो देखियें" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "टेबल" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "दृश्य" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "प्रक्रियाओं" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "घटना" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Connections" msgid "functions" msgstr "कनेक्शन" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2626,284 +2633,284 @@ msgstr "" "phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित हुआ है।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "नवीनतम स्थिर संस्करण:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "अद्यतन" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "दृश्य बनाइये" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "सर्वर" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "सर्वर" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "खुला टेबल शो" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "उपेक्षा करें" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "यह query वापस यहीं दिखायें" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "टेबल की टिप्पणी" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "खोज परिणाम छिपाएँ" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "पिछला" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "आज" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "जनवरी" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "फरवरी" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "मार्च" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "अप्रैल" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "मई" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "जून" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "जुलाई" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "अगस्त" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "सितम्बर" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "नवम्बर" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "मंगलवार" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2911,203 +2918,203 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "मंगलवार" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "रवि" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "सोम" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "मंगल" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "बुध" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "गुरु" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "शुक्र" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "शनि" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "सप्ताह" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "कुछ नहीं" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "घंटा" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "मिनट" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "सेकण्ड" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "पाठ फ़ील्ड" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4092,7 +4099,7 @@ msgstr "सूचकांक" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "कार्य" @@ -4103,8 +4110,8 @@ msgid "Keyname" msgstr "मुख्यनाम" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4136,9 +4143,9 @@ msgstr "क्रम में करें" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "टिप्पणी" @@ -4153,14 +4160,14 @@ msgstr "सूचकांक %s गिरा दिया गया है." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "रद्द" @@ -4270,7 +4277,7 @@ msgstr "नज़र रखना" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4940,19 +4947,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "एक नया इन्डेक्स बनाऐं" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -4960,7 +4973,7 @@ msgctxt "string types" msgid "String" msgstr "लाईन समाप्त होता है" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5128,7 +5141,7 @@ msgstr "इस मान का उपयोग करें" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "रो" @@ -5213,7 +5226,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "नाम" @@ -8577,7 +8590,8 @@ msgid "No data to display" msgstr "कोइ डाटाबेस नहिं" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8621,39 +8635,40 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "कोई पंक्ति चयनित नहीं" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "Table %1$s has been altered successfully." msgid "The columns have been moved successfully." msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "त्रुटियों को इकट्ठा करें" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "बदलें" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8664,20 +8679,20 @@ msgstr "बदलें" msgid "Index" msgstr "सूची" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "प्राथमिक" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10134,7 +10149,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10603,32 +10618,32 @@ msgid "Delete the table (DROP)" msgstr "डेटाबेस को ______ छोड़ें" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "विश्लेषण" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "चेक" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "सुधारना" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "फिर से बनाना" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "मरम्मत" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10648,6 +10663,7 @@ msgid "Partition %s" msgstr "विभाजन %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "विभाजन हटायें" @@ -10874,7 +10890,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -10900,21 +10916,21 @@ msgstr "वर्णन" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "वीएव के लिए संरचना" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -11026,7 +11042,7 @@ msgid "Database:" msgstr "डाटाबेस" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11143,7 +11159,7 @@ msgid "Data creation options" msgstr "परिवर्तन के विकल्प" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11213,7 +11229,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11289,25 +11305,25 @@ msgstr "शुन्य मूल्य के लिए AUTO_INCREMENT का msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT मूल्य जोडें" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "टेबल के लिए MIME प्रकार" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "टेबल के लिए संबंध" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "वीएव के लिए संरचना" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15525,7 +15541,7 @@ msgid "Pick from Central Columns" msgstr "काँलम हटाना" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15542,92 +15558,92 @@ msgstr "" msgid "after %s" msgstr "%s के बाद" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "विभाजित" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "%s स्तंभ के लिए मूल्य" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "विभाजन %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "विभाजित" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "विभाजित" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "विभाजन %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "मूल्य" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "विभाजित" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "इंजन" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "डेटा घर निर्देशिका" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "निर्देशिका बचाना" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "प्रभावित पंक्तियाँ:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "ब्राउज़" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "ढूंढें" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16495,7 +16511,7 @@ msgid "at beginning of table" msgstr "टेबल के शुरू में" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16503,28 +16519,47 @@ msgstr "विभाजन %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "परिभाषित सूचकांक नहीं पाए गए!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "विभाजित" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "विभाजित" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "रौ की लंबाई" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "रौ की लंबाई" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "विभाजित" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "विभाजन हटायें" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/hr.po b/po/hr.po index d092e062a6..c73c6ae89d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-28 11:02+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Spremi kao datoteku" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Povrat" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Odaberi sve" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "U obrascu nedostaje vrijednost!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "najmanje jedna riječ" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Netočan broj porta" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Netočan broj porta" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Dodaj indeks" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Uredi indeks" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Dodaj %s polja" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Izradi relaciju" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Izradi relaciju" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Polja obuhvaćena po" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Dodaj %s polja" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "unutar upita" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Vezane stranice" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL upit" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Vrijednost" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Ime domaćina je prazno!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Korisničko ime je prazno!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Lozinka je prazna!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Ukloni odabrane korisnike" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Zatvori" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Broj izrađenih stranica." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil je ažuriran." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Redak je izbrisan" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Ostalo" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Veze/Procesi" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1256,181 +1262,181 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Pohrana upita" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Pohrana upita" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Pohrana upita" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Korištenje CPU-a" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Sistemska memorija" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Prosječno učitavanje" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Najveći broj datoteka zapisnika" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Keširana memorija" -#: js/messages.php:158 +#: js/messages.php:159 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Međuspremnik" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Slobodna memorija" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Zauzeta memorija" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Ukupno" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Iskorištenost prostora" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Slobodne stranice" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Veze" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "kB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s tablica" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Perzijski" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Promet" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Opće osobine relacija" -#: js/messages.php:186 +#: js/messages.php:187 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Poravnaj s mrežom" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1442,47 +1448,47 @@ msgstr "" msgid "None" msgstr "bez kompresije" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log je omogućen." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log je omogućen." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log and general_log su onemogućeni." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1490,156 +1496,156 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Spremi kao datoteku" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Omogućeno" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Onemogućeno" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Upit je trajao %01.4f sek" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Opće osobine relacija" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Opće osobine relacija" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Naslov izvještaja" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Diferencijalni" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Jedinica" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "Lokalno" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Pročitaj zahtjeve" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "Nema baza podataka" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Nema baza podataka" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Analiziraj" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Objasni SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1647,7 +1653,7 @@ msgstr "Objasni SQL" msgid "Status" msgstr "Stanje" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1657,98 +1663,98 @@ msgstr "Stanje" msgid "Time" msgstr "Vrijeme" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Ukupno" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Izrada profila" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tablica" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Tablica znakova" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy msgid "Log table filter options" msgstr "Opcije izvoza baze podataka" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 #, fuzzy msgid "Filter" msgstr "Datoteke" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy msgid "Sum of grouped rows:" msgstr "Broj presloženih redaka." -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Ukupno" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "Lokalno" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Osvježi" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1758,71 +1764,71 @@ msgstr "" msgid "Import" msgstr "Uvoz" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ažuriraj upit" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentacija" -#: js/messages.php:283 +#: js/messages.php:284 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "Detalji…" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentacija" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1833,72 +1839,72 @@ msgstr "" msgid "Cancel" msgstr "Odustani" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Opće osobine relacija" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "Lokalno" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Procesi" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Pohrana upita" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Nema odabrane baze podataka." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Brisanje stupca" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1908,72 +1914,72 @@ msgstr "Dodaj primarni ključ" msgid "OK" msgstr "U redu" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Preimenuj bazu podataka u" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Tablica znakova" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Onemogući provjere stranih znakova" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy msgid "Failed to get real row count." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Traži" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "SQL upit" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "SQL upit" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Pretraživanje" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Brisanje %s" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1990,46 +1996,46 @@ msgstr "" msgid "Export" msgstr "Izvoz" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET uređivač" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Vrijednosti za stupac %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Vrijednosti za novi stupac" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Unesite svaku vrijednost u drugo polje" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Dodaj novog korisnika" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "SQL upit" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -2043,7 +2049,7 @@ msgstr "SQL upit" msgid "Edit" msgstr "Uređivanje" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2055,96 +2061,96 @@ msgstr "Uređivanje" msgid "Delete" msgstr "Izbriši" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d nije valjani broj retka." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Varijabla" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nema odabranih redova" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Traži u bazi podataka" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Slobodna memorija" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atributi" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Dodaj primarni ključ" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primarni ključ je dodan na %s." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Izvještaj o praćenju" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2152,563 +2158,564 @@ msgstr "" msgid "End of step" msgstr "Pri završetku tablice" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy msgid "Done" msgstr "Podaci" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nema odabrane baze podataka." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Spremi" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "SQL upit" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Traži" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nazivi stupaca" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nazivi stupaca" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy msgid "Maximum value:" msgstr "Nema baza podataka" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL upit" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL upit" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Ako zadržite pokazivača miša iznad točke biti će prikazan natpis." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Dodaj/Izbriši stupce polja" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Odaberite dva različita stupca" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Veličina pokazatelja podataka" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopiraj" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Točka" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Linija teksta" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Unutarnji Prsten" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Vanjski Prsten" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj stranice:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select Tables" msgid "Save page" msgstr "Odaberite tablice" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select Tables" msgid "Save page as" msgstr "Odaberite tablice" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Slobodne stranice" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select Tables" msgid "Delete page" msgstr "Odaberite tablice" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Jedinica" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Odaberite tablicu za uređivanje" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Netočan broj porta" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Uredi ili izvozi relacijske šeme" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Dodaj opciju stupcu " -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Podnesi" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Izvorni položaj" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Odustani" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Uvezi datoteke" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Najveća veličina datoteke zapisnika" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Odaberite tablice" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Nema baza podataka" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeksi" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u lijevom okviru" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tablice" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Prikaz" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Postupci" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "Događaj" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Funkcije" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2718,138 +2725,138 @@ msgstr "" "Najnovija verzija je %s objavljena na %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "ID poslužitelja" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "ID poslužitelja" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opće osobine relacija" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tablice" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriraj" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ovaj upit ponovno prikaži ovdje" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Želite li zaista " -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tablice" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2857,96 +2864,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Veljača" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Svi" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Rujan" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Studeno" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2954,78 +2961,78 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Pro" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Srijeda" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "ČEtvrtak" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3033,86 +3040,86 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3121,137 +3128,137 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "bez kompresije" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Sat" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "po sekundi" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Upotrijebi tekstualno polje" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Netočan broj porta" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Netočan broj porta" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Netočan broj porta" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Netočan broj porta" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Netočan broj porta" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Netočan broj porta" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Netočan broj porta" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Netočan broj porta" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Netočan broj porta" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Netočan broj porta" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Netočan broj porta" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Netočan broj porta" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Netočan broj porta" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Netočan broj porta" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4252,7 +4259,7 @@ msgstr "Indeksi" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Aktivnost" @@ -4263,8 +4270,8 @@ msgid "Keyname" msgstr "Naziv ključa" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4296,9 +4303,9 @@ msgstr "Uspoređivanje" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Komentar" @@ -4313,14 +4320,14 @@ msgstr "Index %s je odbačen." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Ispusti" @@ -4431,7 +4438,7 @@ msgstr "Praćenje" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -5103,19 +5110,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Izradi novi indeks" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5123,7 +5136,7 @@ msgctxt "string types" msgid "String" msgstr "Redovi završeni s" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Log file count" msgctxt "spatial types" @@ -5289,7 +5302,7 @@ msgstr "Upotrijebi ovu vrijednost" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Redaka" @@ -5377,7 +5390,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Naziv" @@ -8473,7 +8486,8 @@ msgid "No data to display" msgstr "Nema baza podataka" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8517,39 +8531,40 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Nema odabranih redova" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Odabrani korisnici uspješno su izbrisani." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tablica %1$s uspješno je izmijenjena." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vrsta upita" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tablica %1$s uspješno je izmijenjena." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Promijeni" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8560,20 +8575,20 @@ msgstr "Promijeni" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Puni tekst" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10132,7 +10147,7 @@ msgstr "Novo" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10607,32 +10622,32 @@ msgid "Delete the table (DROP)" msgstr "Nema baza podataka" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analiziraj" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Provjeri" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimiziraj" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Ponovno izgradi" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Popravi" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10652,6 +10667,7 @@ msgid "Partition %s" msgstr "Particija %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Ukloni particioniranje" @@ -10884,7 +10900,7 @@ msgstr "Opcije izvoza baze podataka" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Izbacivanje podataka za tablicu" @@ -10910,21 +10926,21 @@ msgstr "Opis" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tablična struktura za tablicu" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struktura za pregledavanje" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Unutarnja struktura za pregledavanje" @@ -11038,7 +11054,7 @@ msgid "Database:" msgstr "Baza podataka" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11154,7 +11170,7 @@ msgid "Data creation options" msgstr "Opcije preoblikovanja" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11224,7 +11240,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11305,25 +11321,25 @@ msgstr "Dodaj vrijednost AUTO_INCREMENT" msgid "AUTO_INCREMENT for table" msgstr "Dodaj vrijednost AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME VRSTE ZA TABLICU" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELACIJE TABLICE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktura za pregledavanje" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15765,7 +15781,7 @@ msgid "Pick from Central Columns" msgstr "Ukloni stupac / stupce" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15782,91 +15798,91 @@ msgstr "" msgid "after %s" msgstr "Poslije %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "particionirano" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Vrijednosti za stupac %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Particija %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "particionirano" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "particionirano" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Particija %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Vrijednost" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "particionirano" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Pogoni" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Osnovna mapa podataka" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy msgid "Index directory" msgstr "Osnovna mapa podataka" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Latched pages" msgid "Max rows" msgstr "Vezane stranice" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Pretraživanje" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Traži" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16743,7 +16759,7 @@ msgid "at beginning of table" msgstr "Pri početku tablice" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16751,28 +16767,47 @@ msgstr "Particija %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Nema definiranog indeksa!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "particionirano" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "particionirano" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Duljina retka" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Duljina retka" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "particionirano" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Ukloni particioniranje" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/hu.po b/po/hu.po index 491f408964..1e8e10b894 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-08-02 12:15+0200\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian " -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1002,169 +1008,169 @@ msgstr "" "Biztosan módosítani szeretné az összes oszlopillesztést és át szeretné " "alakítani az adatokat?" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Mentés és bezárás" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Visszaállítás" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Összes visszaállítása" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Érték hiányzik az űrlapban!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Legalább egy lehetőséget válasszon ki!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Adjon meg egy érvényes számot!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Adjon meg egy érvényes hosszt!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Index hozzáadása" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Index szerkesztése" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "%s oszlop hozzáadása az indexhez" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Egyoszlopos index létrehozása" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Összetett index létrehozása" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Összetétel ezzel:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Válasszon oszlopokat az indexhez." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Legalább egy oszlopot kell hozzáadnia." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQL előnézete" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Lekérdezés szimulálása" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Illeszkedő sorok:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL lekérdezés:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y érték" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "A gépnév üres!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Üres a felhasználónév!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Üres a jelszó mező!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "A kijelölt felhasználók törlése" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Bezárás" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "A sablon létre lett hozva." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "A sablon be lett töltve." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "A sablon frissítve lett." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "A sablon törölve lett." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Egyéb" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Kapcsolatok / Folyamatok" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "A helyi megfigyelés beállításai nem kompatibilisek!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1176,165 +1182,165 @@ msgstr "" "nem működik többé. Állítsa vissza az alapértelmezést a Beállítások " "menüben." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Lekérdezési gyorsítótár hatékonysága" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Lekérdezési gyorsítótár használat" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Lekérdezési gyorsítótárat használatban" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Rendszer CPU használat" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Rendszermemória" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Rendszer lapozófájl" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Átlagos terhelés" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Teljes memória" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Gyorsítótárazott memória" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Puffer memória" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Szabad memória" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Használt memória" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Teljes lapozófájl" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Gyorsítótárazott lapozófájl" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Használt lapozófájl" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Szabad lapozófájl" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Elküldött bájtok" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Fogadott bájtok" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Kapcsolatok" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Folyamatok" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tábla" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Kérdések" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Forgalom" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Beállítások" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Diagram hozzáadása" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Legalább egy változót adjon meg a sorozathoz!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1346,47 +1352,47 @@ msgstr "Legalább egy változót adjon meg a sorozathoz!" msgid "None" msgstr "Nincs" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Megfigyelés visszakapcsolása" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Megfigyelés megállítása" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Automatikus frissítés indítása" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Automatikus frissítés leállítása" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "A general_log és a slow_query_log engedélyezve vannak." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "A general_log engedélyezve van." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "A slow_query_log engedélyezve van." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "A slow_query_log és a general_log titlva vannak." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output nincs beállítva a TÁBLÁHOZ." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output be van állítva a TÁBLÁHOZ." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1397,12 +1403,12 @@ msgstr "" "lekérdezéseket naplózza, amelyek %d másodpercnél hosszabb ideig tartanak. " "Ajánlott a long_query_time beállítása 0-2 másodpercre a rendszertől függően." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "A long_query_time %d másodpercre van beállítva." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1411,30 +1417,30 @@ msgstr "" "alapértelmezettre a kiszolgáló újraindításakor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "A log_output beállítása ehhez: %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "%s engedélyezése" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "%s letiltása" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "A long_query_time beállítása %d másodpercre." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1443,58 +1449,58 @@ msgstr "" "rendszergazdaként vagy vegye fel a kapcsolatot az adatbázis " "adminisztrátorával." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Beállítások megváltoztatása" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Jelenlegi beállítások" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Diagramcím" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Megkülönböztető" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Osztva %s -el" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Egység" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "a slow naplóból" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "az általános naplóból" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Az adatbázis neve nem ismert ennél a lekérdezésnél a kiszolgáló naplójában." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Naplók elemzése" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Elemzés és naplók betöltése. Ez eltarthat egy ideig." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Kérés elvetése" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1505,7 +1511,7 @@ msgstr "" "rendezési kritériumként, ezért a lekérdezések más tulajdonságai, mint " "például a lekérdezés kezdete, eltérőek lehetnek." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1515,31 +1521,31 @@ msgstr "" "történt INSERT lekérdezések is egy csoportba kerültek, tekintet nélkül a " "beszúrt adatokra." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "A naplóadatok betöltve. Végrehajtott lekérdezések ebben az időszakban:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Ugrás a naplótáblához" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Nincs adat" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "A napló megvizsgálva, de nincs adat az adott időszakban." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Elemzés…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "A kimenet magyarázata" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1547,7 +1553,7 @@ msgstr "A kimenet magyarázata" msgid "Status" msgstr "Állapot" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1557,60 +1563,60 @@ msgstr "Állapot" msgid "Time" msgstr "Idő" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Teljes idő:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Eredmények elemzése" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tábla" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Diagram" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Naplótábla szűrőbeállításai" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Szűrő" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Lekérdezések szűrése szó/reguláris kifejezés alapján:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Lekérdezések csoportosítása, változóadat figyelmen kívül hagyása a WHERE " "feltételben" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "A csoportosított sorok összege:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Összesen:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Naplók betöltése" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "A megfigyelés frissítése sikertelen" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1620,27 +1626,27 @@ msgstr "" "Valószínűleg a munkamenet lejárt. Az oldal újratöltése, és a belépési adatok " "újbóli megadása segíthet." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Oldal újratöltése" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Érintett sorok:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "A beállítófájl feldolgozása nem sikerült. Nem tűnik érvényes JSON kódnak." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "A grafikon felépítése az importált beállításokkal sikertelen. Eredet " "beállítások visszaállítása…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1650,61 +1656,61 @@ msgstr "" msgid "Import" msgstr "Importálás" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Megfigyelési beállítások importálása" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Válassza ki a fájlt, amelyet importálni szeretne." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Nincs elérhető fájl a kiszolgálón az importáláshoz!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Lekérdezés elemzése" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Tanácsadó rendszer" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Lehetséges teljesítmény problémák" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Kiadás" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Javaslat" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Szabály részletek" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Indoklás" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Használt változó / képlet" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Teszt" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "SQL formázása…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1715,71 +1721,71 @@ msgstr "SQL formázása…" msgid "Cancel" msgstr "Mégse" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Oldallal kapcsolatos beállítások" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Alkalmaz" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Betöltés…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Kérés megszakítva!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Kérés feldolgozása" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "A kérés sikertelen!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request:" msgid "Error in processing request" msgstr "Hiba a kérés feldolgozásában:" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Hibakód: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Hibaüzenet: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Nincs kiválasztott adatbázis." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Oszlop törlése" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1789,62 +1795,62 @@ msgstr "Elsődleges kulcs hozzáadása" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Kattintson az értesítés elutasításához" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Adatbázis(ok) átnevezése" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Adatbázis másolása" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Karakterkészlet változtatása" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Idegen kulcsok ellenőrzésének engedélyezése" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "A valódi sorok számának lekérése sikertelen." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Keresés" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Keresési eredmények elrejtése" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Keresési eredmények megjelenítése" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Böngészés" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Törlés" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "A tárolt függvény meghatározásának tqartalmaznia kell VISSZATÉRÉSI utasítást!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1861,43 +1867,43 @@ msgstr "" msgid "Export" msgstr "Exportálás" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET szerkesztő" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "„%s” oszlop értékei" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Az új oszlop értékei" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Minden értéket külön mezőben adjon meg." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d érték hozzáadása" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Megjegyzés: Ha a fájl több táblát tartalmaz, akkor azok egyesítve lesznek." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "SQL-lekérdezési panelek elrejtése" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Lekérdezési doboz megjelenítése" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1911,7 +1917,7 @@ msgstr "Lekérdezési doboz megjelenítése" msgid "Edit" msgstr "Módosítás" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1923,41 +1929,41 @@ msgstr "Módosítás" msgid "Delete" msgstr "Törlés" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "A(z) %d érvénytelen sorszám." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Nincs automatikusan mentett lekérdezés" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "%d. változó:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Kiválasztás" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Oszlopkiválasztó" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Keresés a listában" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1967,15 +1973,15 @@ msgstr "" "adatbázis központi oszlopainak listája tartalmaz-e olyan oszlopokat, amelyek " "nincsenek a jelenlegi táblában." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Több megtekintése" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Biztos benne?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1983,51 +1989,51 @@ msgstr "" "Ez a művelet megváltoztathatja néhány oszlop meghatározását.
Biztosan " "folytatni szeretné?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Folytatás" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Elsődleges kulcs hozzáadása" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Elsődleges kulcs hozzáadva." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Átvitel a következő lépésre…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "A normalizálás első lépése befejeződött a következő táblánál: „%s”." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Lépés vége" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "A normalizálás második lépése (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Kész" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Részleges függőségek megerősítése" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "A kijelölt részleges függőségek a következők:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2035,21 +2041,21 @@ msgstr "" "Megjegyzés: a, b -> d,f azt jelenti, hogy az „a” és „b” oszlopok értékei " "együtt meghatározzák a „d” és „f” oszlopok értékét." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Nincsenek részleges függőségek kiválasztva!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mutassa meg a táblában lévő adatok alapján a lehetséges részleges " "függőségeket" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Részleges függőségek listájának elrejtése" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2057,172 +2063,173 @@ msgstr "" "Maradjon ülve! Az adatok méretétől és a tábla oszlopszámától függően " "eltarthat néhány másodpercig." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Lépés" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "A következő műveletek lesznek végrehajtva:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "%s oszlopok ELDOBÁSA a következő táblából: %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "A következő tábla létrehozása" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "A normalizálás harmadik lépése (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Tranzitív függőségek megerősítése" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "A kijelölt függőségek a következők:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Nincsenek függőségek kiválasztva!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Mentés" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Keresési kritériumok elrejtése" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Keresési kritériumok megjelenítése" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Tartomány keresés" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Oszlop maximum:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Oszlop minimum:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Legkisebb érték:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Legnagyobb érték:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Keresési és csere kritériumok elrejtése" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Keresési és csere kritériumok megjelenítése" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Minden pont egy adatsort ábrázol." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Egy pont fölé mutatás megjeleníti annak címkéjét." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "A nagyításhoz jelöljön ki egy területet az egérrel." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Kattints a nagyítás visszaállítása gombra, hogy visszatérj az eredeti " "állapotra." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Kattintson az adat területére a megjelenítéshez és a rekord esetleges " "szerkesztéséhez." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "A terület a jobb alsó sarok húzásával átméretezhető." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Válasszon két oszlopot" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Válasszon két különböző oszlopot" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Adatmutató tartalma" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Másolás" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Pont" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Karakterlánc" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Sokszög" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Belső gyűrű" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Külső gyűrű:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Szeretné másolni a titkosítási kulcsot?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Titkosítási kulcs" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2230,24 +2237,24 @@ msgstr "" "Azt jelzi, hogy módosításokat végzett ezen az oldalon; megerősítést fog " "kérni a módosítások elhagyása előtt" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Válassza ki az elsődleges kulcsot vagy egy egyedi kulcsot!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő oszlopot" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2255,77 +2262,77 @@ msgstr "" "Nem mentette a változtatásokat az elrendezésben. Mentés nélkül ezek el " "fognak veszni. Így is folytatni szeretné?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Oldal neve" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Oldal mentése" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Oldal mentése másként" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Oldal megnyitása" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Oldal törlése" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Névtelen" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Válasszon egy oldalt a folytatáshoz" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Adjon meg egy érvényes oszlopnevet" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Szeretné menteni a jelenlegi oldal módosításait?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Az oldal sikeresen törölve" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Kapcsolati séma exportálása" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Lehetőség hozzáadása a következő oszlophoz: „%s”." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objektum létrehozva." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Indítás" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Nyomja meg az Escape billentyűt a szerkesztés megszakításához." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2333,15 +2340,15 @@ msgstr "" "Egy vagy több adat szerkesztve lett de nem lett még elmentve. Biztos benne, " "hogy mentés nélkül kívánja elhagyni az oldalt?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Húzza az elemeket az újrarendezéshez." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Kattintson az eredmények rendezéséhez ezen oszlop szerint." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2351,28 +2358,28 @@ msgstr "" "DESC váltogatása.
- Oszlop eltávolítása az ORDER BY kikötésből Ctrl" "+kattintás vagy Alt+kattintás (Mac: Shift+Option+kattintás) használatával" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Kattintson a kijelöléshez / kijelölés megszüntetéséhez." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Az oszlopnév másolásához kattintson duplán." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Kattintson a legördülő nyílra
az oszlop láthatóságának ki/" "bekapcsolásához." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Összes megjelenítése" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2381,13 +2388,13 @@ msgstr "" "rendelt funkciók mint Szerkesztés, Másolás és Törlés nem feltétlenül lesznek " "elérhetők mentés után." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Adjon meg egy érvényes hexadecimális szöveget. Az érvényes karakterek: 0-9, " "A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2395,130 +2402,130 @@ msgstr "" "Valóban meg szeretné nézni az összes sort? Egy nagy tábla esetén ez " "összeomlaszthatja a böngészőt." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Eredeti hossz" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "mégse" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Megszakítva" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Sikerült" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Importálás állapota" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Ejtse ide a fájlokat" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Először válasszon adatbázist" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Az elemek nagy része szerkeszthetővé válik
dupla kattintással." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "Az elem szerkeszthetővé
válik kattintással." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Ugrás a hivatkozáshoz:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Oszlopnév másolása." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "A vágólapra való másoláshoz kattintson jobb egérgombbal az oszlop nevére." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generálás" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Több" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Panel megjelenítése" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Panel elrejtése" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Hozzákapcsolás a fő panelhez" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Eltávolítás a fő panelről" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "A kiszolgálón lévő összes adatbázis szűréséhez nyomja meg azt Entert a " "keresési kifejezés után" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Az adatbázisban lévő összes %s szűréséhez nyomja meg azt Entert a keresési " "kifejezés után" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "táblák" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "nézetek" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "eljárások" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "események" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "függvények" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "A kért oldal nem található az Előzményekben, talán már lejárt." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2528,50 +2535,50 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "friss" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Nézet létrehozása" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Hibajelentések küldése" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Hibajelentés beküldése" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "Végzetes JavaScript hiba történt. Szeretne hibajelentést küldeni?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Jelentés beállítások megváltoztatása" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Jelentés részleteinek megjelenítése" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2579,7 +2586,7 @@ msgstr "" "Az exportálás nem teljes a PHP szinten lévő alacsony végrehajtási időkorlát " "miatt!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2589,59 +2596,59 @@ msgstr "" "Elküldéskor a mezők egy része mellőzve lehet a PHP max_input_vars beállítása " "miatt." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Hibák észlelhetők a kiszolgálón!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Nézze meg ennek az ablaknak az alját." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Összes mellőzése" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "A beállítások szerint jelenleg elküldés alatt vannak, legyen türelemmel." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Végrehajtja ismét ezt a lekérdezést?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Valóban törölni szeretné ezt a könyvjelzőt?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "Hibák történtek az SQL hibakeresési információk lekérése közben." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s kérés került végrehajtásra %s alkalommal %s másodperc alatt." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentum került átadásra" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Argumentumok megjelenítése" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Argumentumok elrejtése" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Felhasznált idő:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2652,331 +2659,331 @@ msgstr "" "működni. Safari böngészőben a „Privát módú böngészés” okoz gyakran ilyen " "problémát." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Előző" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Ma" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Január" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Február" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Március" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Április" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Május" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Június" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Július" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Augusztus" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Szeptember" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Október" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "November" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Már" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Ápr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sze" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dec" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Péntek" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Va" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Hé" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Pé" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Hét" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "nincs" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Óra" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Perc" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "másodperc" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Ez a mező kötelező" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Javítsa ezt a mezőt" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Adjon meg egy érvényes e-mail címet" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Adjon meg egy érvényes URL-t" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Adjon meg egy érvényes dátumot" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Adjon meg egy érvényes dátumot (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Adjon meg egy érvényes számot" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Adjon meg egy érvényes hitelkártya számot" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Csak számjegyeket adjon meg" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Adja meg ismét ugyanazt az értéket" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Ne adjon meg {0} karakternél többet" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Adjon meg legalább {0} karaktert" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Adjon meg egy {0} és {1} közé eső karakterszámú értéket" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Adjon meg egy értéket {0} és {1} között" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Adjon meg értéket, amely kisebb vagy egyenlő mint {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Adjon meg értéket, amely nagyobb vagy egyenlő mint {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Adjon meg egy érvényes dátumot vagy időt" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Adjon meg egy érvényes HEX bemenetet" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3850,7 +3857,7 @@ msgstr "Indexek" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Művelet" @@ -3861,8 +3868,8 @@ msgid "Keyname" msgstr "Kulcsnév" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3894,9 +3901,9 @@ msgstr "Illesztés" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Megjegyzés" @@ -3911,14 +3918,14 @@ msgstr "A(z) %s index eldobása megtörtént." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Eldobás" @@ -4030,7 +4037,7 @@ msgstr "Követés" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4710,23 +4717,29 @@ msgstr "Sokszögek összessége" msgid "A collection of geometry objects of any type" msgstr "Bármely típusú geometriai tárgyak összessége" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "numerikus" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Dátum és idő" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Karakterlánc" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Térbeli" @@ -4880,7 +4893,7 @@ msgstr "Ezen érték használata" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Sorok" @@ -4966,7 +4979,7 @@ msgstr "NEM" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Név" @@ -8070,7 +8083,8 @@ msgid "No data to display" msgstr "Nincs megjelenítendő adat" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8104,15 +8118,21 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "A(z) „%s” név a MySQL számára fenntartott kulcsszó." msgstr[1] "A(z) „%s” nevek a MySQL számára fenntartott kulcsszavak." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Nem jelölt ki sort." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "Az oszlop mozgatása sikeresen megtörtént." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Lekérdezési hiba" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8120,18 +8140,13 @@ msgstr "" "A(z) %1$s tábla sikeresen módosítva lett. A jogosultságok módosítása " "megtörtént." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Lekérdezési hiba" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Módosítás" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8142,20 +8157,20 @@ msgstr "Módosítás" msgid "Index" msgstr "Index" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Térbeli" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Teljes szöveg" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Különböző értékek" @@ -9582,7 +9597,7 @@ msgstr "új" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Nézetek" @@ -10072,32 +10087,32 @@ msgid "Delete the table (DROP)" msgstr "Tábla törlése (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Elemzés" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Ellenőrzés" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimalizálás" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Újraépítés" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Javítás" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Kiürítés" @@ -10115,6 +10130,7 @@ msgid "Partition %s" msgstr "%s partíció" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Particionálás eltávolítása" @@ -10331,7 +10347,7 @@ msgstr "Adatkiírási beállítások" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "A tábla adatainak kiíratása" @@ -10355,21 +10371,21 @@ msgstr "Meghatározás" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tábla szerkezet ehhez a táblához" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Nézet szerkezete" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "A nézet helyettes szerkezete" @@ -10460,7 +10476,7 @@ msgid "Database:" msgstr "Adatbázis:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Adatok:" @@ -10562,7 +10578,7 @@ msgid "Data creation options" msgstr "Adatlétrehozási beállítások" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Tábla csonkolása beszúrás előtt" @@ -10646,7 +10662,7 @@ msgstr "Úgy tűnik, az adatbázis eljárásokat használ;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "az álnév exportálás nem minden esetben működhet megbízhatóan." @@ -10711,24 +10727,24 @@ msgstr "A kiírt táblák AUTO_INCREMENT értéke" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT a táblához" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "Tábla MIME-típusok" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "TÁBLA KAPCSOLATAI" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Úgy tűnik, a tábla eseményindítókat használ;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "%s nézet struktúrája táblaként exportálva" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Hiba az adatolvasás közben:" @@ -14937,7 +14953,7 @@ msgid "Pick from Central Columns" msgstr "Válasszon a központi oszlopokból" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Kifejezés" @@ -14951,92 +14967,92 @@ msgstr "első" msgid "after %s" msgstr "%s után" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "particionált" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "„%s” oszlop értékei" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "%s partíció" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "particionált" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "particionált" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "%s partíció" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Érték" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "particionált" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Motorok" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Adatok kezdőkönyvtára" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Mentési könyvtár" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Illeszkedő sorok:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Tartalom" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Táblakeresés" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -15770,7 +15786,7 @@ msgid "at beginning of table" msgstr "a tábla elejénél" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15778,28 +15794,47 @@ msgstr "%s partíció" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Nincs meghatározott index!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "particionált" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "particionált" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Sor hossza" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Sor hossza" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "particionált" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Particionálás eltávolítása" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Nézet szerkesztése" diff --git a/po/hy.po b/po/hy.po index 94bd8a93ac..234430dedf 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-30 05:36+0200\n" "Last-Translator: Andrey Aleksanyants \n" -"Language-Team: Armenian " -"\n" +"Language-Team: Armenian \n" "Language: hy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,8 +171,8 @@ msgid "Comments" msgstr "Մեկնաբանություններ" #: db_datadict.php:156 -#: libraries/controllers/TableStructureController.class.php:952 -#: libraries/controllers/TableStructureController.class.php:957 +#: libraries/controllers/TableStructureController.class.php:1183 +#: libraries/controllers/TableStructureController.class.php:1188 #: libraries/tracking.lib.php:922 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 @@ -180,7 +180,7 @@ msgstr "Մեկնաբանություններ" msgid "Primary" msgstr "Առաջնային" -#: db_datadict.php:166 js/messages.php:317 libraries/Index.class.php:567 +#: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 libraries/mult_submits.lib.php:403 @@ -204,16 +204,16 @@ msgstr "Առաջնային" msgid "No" msgstr "Ոչ" -#: db_datadict.php:166 js/messages.php:444 libraries/Index.class.php:568 +#: db_datadict.php:166 js/messages.php:445 libraries/Index.class.php:568 #: libraries/Index.class.php:605 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/controllers/TableStructureController.class.php:541 -#: libraries/controllers/TableStructureController.class.php:1203 -#: libraries/controllers/TableStructureController.class.php:1212 -#: libraries/controllers/TableStructureController.class.php:1217 -#: libraries/controllers/TableStructureController.class.php:1222 -#: libraries/controllers/TableStructureController.class.php:1227 +#: libraries/controllers/TableStructureController.class.php:772 +#: libraries/controllers/TableStructureController.class.php:1434 +#: libraries/controllers/TableStructureController.class.php:1443 +#: libraries/controllers/TableStructureController.class.php:1448 +#: libraries/controllers/TableStructureController.class.php:1453 +#: libraries/controllers/TableStructureController.class.php:1458 #: libraries/mult_submits.inc.php:82 libraries/mult_submits.inc.php:195 #: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 #: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 @@ -255,7 +255,7 @@ msgstr "Տվյալների բազայում աղյուսակներ չեն հայ #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:119 -#: templates/database/structure/show_create.phtml:18 +#: templates/database/structure/show_create.phtml:19 msgid "Tables" msgstr "Աղյուսակներ" @@ -420,23 +420,23 @@ msgid "Point:" msgstr "Կետ՝" #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 -#: gis_data_editor.php:370 js/messages.php:433 +#: gis_data_editor.php:370 js/messages.php:434 msgid "X" msgstr "X" #: gis_data_editor.php:217 gis_data_editor.php:245 gis_data_editor.php:301 -#: gis_data_editor.php:376 js/messages.php:434 +#: gis_data_editor.php:376 js/messages.php:435 msgid "Y" msgstr "Y" #: gis_data_editor.php:239 gis_data_editor.php:295 gis_data_editor.php:368 -#: js/messages.php:436 +#: js/messages.php:437 #, php-format msgid "Point %d" msgstr "%d կետ" #: gis_data_editor.php:252 gis_data_editor.php:308 gis_data_editor.php:386 -#: js/messages.php:442 +#: js/messages.php:443 msgid "Add a point" msgstr "Ավելացնել նոր կետ" @@ -458,7 +458,7 @@ msgstr "%d-ի ներքին ուրվագիծը՝" msgid "Add a linestring" msgstr "Ավելացնել նոր հատված" -#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:443 +#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:444 msgid "Add an inner ring" msgstr "Ավելացնել ներքին ուրվագիծ" @@ -475,7 +475,7 @@ msgstr "Ավելացնել նոր բազմանկյուն" msgid "Add geometry" msgstr "Ավելացնել երկրաչափություն" -#: gis_data_editor.php:409 js/messages.php:292 +#: gis_data_editor.php:409 js/messages.php:293 #: libraries/DbSearch.class.php:464 libraries/DisplayResults.class.php:1799 #: libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:166 @@ -530,7 +530,7 @@ msgstr "" msgid "Succeeded" msgstr "Հաջողվեց" -#: import.php:58 js/messages.php:501 +#: import.php:58 js/messages.php:502 msgid "Failed" msgstr "Ձախողվեց" @@ -627,7 +627,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Չհաջողվեց բեռնել ներմուծման առաջընթացը։" -#: import_status.php:112 js/messages.php:378 libraries/Util.class.php:780 +#: import_status.php:112 js/messages.php:379 libraries/Util.class.php:780 #: libraries/export.lib.php:518 #: libraries/plugins/schema/Export_Relation_Schema.class.php:298 #: user_password.php:253 @@ -653,7 +653,7 @@ msgstr "" msgid "General settings" msgstr "Ընդհանուր կայանքներ" -#: index.php:191 js/messages.php:525 +#: index.php:191 js/messages.php:526 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:247 msgid "Change password" @@ -960,7 +960,13 @@ msgstr "" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Իսկապե՞ս եք ցանկանում ԴԱՏԱՐԿԵԼ ընտրած մասնաբաժին(ներ)ը։" -#: js/messages.php:67 +#: js/messages.php:66 +#, fuzzy +#| msgid "Do you really want to TRUNCATE the selected partition(s)?" +msgid "Do you really want to remove partitioning?" +msgstr "Իսկապե՞ս եք ցանկանում ԴԱՏԱՐԿԵԼ ընտրած մասնաբաժին(ներ)ը։" + +#: js/messages.php:68 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -974,15 +980,15 @@ msgstr "" "նման դեպքերում մենք առաջարկում ենք վերադառնալ սկզբնական համադրմանը և դիմել " "հուշակներին " -#: js/messages.php:73 +#: js/messages.php:74 msgid "Garbled Data" msgstr "Խեղաթյուրված տվյալներ" -#: js/messages.php:75 +#: js/messages.php:76 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Համոզվա՞ծ եք, որ ցանկանում եք փոխել համադրումը և փոխարկել տվյալները։" -#: js/messages.php:77 +#: js/messages.php:78 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -998,7 +1004,7 @@ msgstr "" "համար խորհուրդ է տրվում օգտագործել սյունակ(ների) խմբագրման հատկությունը " "(\"Փոխել\" հղումը)՝ աղյուսակի կառուցվածքի էջում։" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1006,161 +1012,161 @@ msgstr "" "Համոզվա՞ծ եք, որ ցանկանում եք փոխել բոլոր սյունակների համադրումները և " "փոխարկել տվյալները։" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Պահպանել և փակել" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Վերակայել" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Վերակայել բոլորը" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Չլրացրած ձևի դաշտ" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Ընտրեք կայանքներից առնվազն մեկը։" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Տրամադրեք վավերական թիվ։" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Տրամադրեք վավերական երկարություն" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Ավելացնել ցուցակագիր" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Խմբագրել ցուցակագիրը" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Ցուցակագրին ավելացնել %s սյունակ" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Ստեղծել մեկ սյունակով ցուցակագիր" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Ստեղծել համալիր ցուցակագիր" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Համալրված՝" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Ընտրեք սյունակներ՝ ցուցակագրի համար։" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Անհրաժեշտ է ավելացնել առնվազն մեկ սյունակ։" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQL-ի նախադիտում" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Կատարել կեղծ հարցում" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Համապատասխանող տողեր՝" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL հարցում՝" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Y արժեքները" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Խնամորդի անունը դատարկ է։" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Օգտանունը դատարկ է։" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Գաղտնաբառը դատարկ է։" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Գաղտնաբառերը նույնը չեն։" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Նշված օգտվողների ջնջում" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Փակել" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Ձևանմուշը ստեղծվեց։" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Ձևանմուշը բեռնվեց։" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Ձևանմուշը արդիացվեց։" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Ձևանմուշը ջնջվեց։" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Այլ" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Միացումներ / Ընթացքներ" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Տեղային ցուցարկչի կայանքները անհամատեղելի են։" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1168,155 +1174,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Հարցումների շտեմումի արդյունավետությունը" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Հարցումների շտեմումի օգտագործումը" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Օգտագործված հարցման շտեմը" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Համակարգի ԿՄՄ օգտագործումը" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Համակարգի հիշողություն" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Համակարգի փոխանակման ֆայլ" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Միջին բեռնվածությունը" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Ամբողջ հիշողությունը" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Շտեմավորված հիշողությունը" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Պահնակված հիշողությունը" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Ազատ հիշողությունը" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Օգտագործված հիշողությունը" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Ընդհանուր փոխանակման տարածությունը" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Շտեմավորված փոխանակման տարածությունը" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Օգտագործված փոխանակման տարածությունը" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Ազատ փոխանակման տարածությունը" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Ուղարկված բայթեր" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Ստացած բայթեր" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Կապեր" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Ընթացքներ" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Բայթ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "կԲայթ" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "մԲայթ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "գԲայթ" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "տԲայթ" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "պԲայթ" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "էԲայթ" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d աղյուսակ" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Հարցեր" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Փոխանակում" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Կայանքներ" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Ավելացնել գծապատկեր ցանցավորմանը" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Ավելացրեք առնվազն մեկ փոփոխական այս շարքին։" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1328,47 +1334,47 @@ msgstr "Ավելացրեք առնվազն մեկ փոփոխական այս շա msgid "None" msgstr "Չկա" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Վերսկսել ցուցարկիչը" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Դադարեցնել ցուցարկիչը" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Սկսել ինքնաթարմացումը" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Կանգնեցնել ինքնաթարմացումը" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log և slow_query_log փոփոխականները միացրած են։" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log փոփոխականը միացրած է։" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log փոփոխականը միացրած է։" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log և general_log փոփոխականները կասեցված են։" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output փոփոխականը նշանակված չէ աղյուսակի համար։" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output փոփոխականը նշանակված է աղյուսակի համար։" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1379,12 +1385,12 @@ msgstr "" "երկար տևող հարցումները։ Ցանկալի է նշանակել long_query_time-ը 0-2 վայրկյան, " "ձեր համակարգից կախված։" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time փոփոխականը նշանակված է %d վարկյան։" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1393,30 +1399,30 @@ msgstr "" "արժեքներին սպասարկչի վերամեկնակման ժամանակ՝" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Նշանակել log_output-ը %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Միացնել %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Կասեցնել %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Նշանակել long_query_time-ը %d վայրկյան։" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1424,60 +1430,60 @@ msgstr "" "Դուք չեք կարող փոխել այս փոփոխականների արժեքները։ Մուտք գործեք արմատային " "հաշիվը կամ կապնվեք տվյալների բազայի վարիչին։" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Փոփոխել կայանքները" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Ընթացիկ կայանքներ" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Գծապատկերի վերնագիր" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Տարբերություններ" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Բաժանված է %s-ի" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Միավոր" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Դանդաղ հարցումների մատյանից" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Հիմնական մատյանից" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Սպասարկչի մատյանում այս հարցման համար այս տվյալների բազայի անունը հայտնի չէ։" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Մատյանների վերլուծում" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" "Ընթանում է մատյանների վերլուծում և բեռնում։ Սա կարող է որոշակի ժամանակ " "պահանջել։" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Չեղարկել հարցումը" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1487,7 +1493,7 @@ msgstr "" "խմբավորման համար օգտարգործվում է միայն SQL հարցումը, իսկ մնացած հատկանիշները " "(օրինակ՝ սկզբի ժամանակը) կարող են տարբերվել։" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1496,33 +1502,33 @@ msgstr "" "Քանի որ ընտրվել է ԶԵՏԵՂՄԱՆ հարցումների խմբավորումը, նույն աղյուսակի ԶԵՏԵՂՄԱՆ " "հարցումները նույնպես կխմբավորվեն, զետեղվող տվյալներից անկախ։" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Մատյանների տվյալները բեռնված են։ Այս ժամանակահատվածում կատարված հարցումները՝" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Անցնել մատյանների աղյուսակին" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Տվյալները չեն գտնվել" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Մատյանը վերլուծվեց, սակայն նշված ժամանակահատվածի համար տվյալներ չեն գտնվել։" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Ընթանում է վերլուծում …" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Արդյունքների բացատրություն" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1530,7 +1536,7 @@ msgstr "Արդյունքների բացատրություն" msgid "Status" msgstr "Կարգավիճակ" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1540,59 +1546,59 @@ msgstr "Կարգավիճակ" msgid "Time" msgstr "Ժամանակ" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Ամբողջական ժամանակ՝" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Հարցումների հսկման արդյունքներ" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Աղյուսակ" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Գծապատկեր" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Մատյանի աղյուսակի զտման կայանքներ" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Զտում" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Զտել հարցումները ըստ բառի կամ կանոնավոր արտահայտության՝" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Խմբավորել հարցումները, անտեսելով WHERE պայմանում փոփոխականների տվյալները" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Խմբավորված տողերի գումարը՝" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Ընդամենը՝" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Մատյանների բեռնում" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Ցուցարկիչի թարմացումը ձախողվեց" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1603,27 +1609,27 @@ msgstr "" "պատճառով։ Էջի վերբեռնումը և ձեր հավատարմագրերի կրկնակի մուտքագրումը կարող է " "օգնել։" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Թարմացնել էջը" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Ազդված տողեր՝" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Կազմաձևի ֆայլի վերլուծումը ձախողվեց։ Այն չի հանդիսանում վավերական JSON կոդ։" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Չհաջողվեց կառուցել գծապատկերի ցանցավորումը՝ ներմուծված կազմաձևից։ Վերակայում " "լռելյայն կազմաձևին …" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1633,59 +1639,59 @@ msgstr "" msgid "Import" msgstr "Ներմուծում" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Ցուցարկչի կազմաձևի ներմուծում" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Ընտրեք ֆայլը՝ ներմուծելու համար։" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Սպասարկչում ներմուծման ենթակա ֆայլեր չկան։" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Վերլուծել հարցումը" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Համակարգային խորհրդատու" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Հնարավոր արդյունավետության խնդիրներ" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Խնդիր" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Խորհուրդ" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Կանոնի մանրամասները" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Հիմնավորում" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Օգտագործված փոփոխական / բանաձև" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Փորձարկում" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "SQL-ի ձևավորում …" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1696,59 +1702,59 @@ msgstr "SQL-ի ձևավորում …" msgid "Cancel" msgstr "Չեղարկել" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Էջերի կայանքներ" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Կիրառել" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Բեռնում …" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Հայցը ընդհատվեց։" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Հարցման կատարում" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Հարցումը ձախողվեց։" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Հարցումը կատարելու սխալ" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Սխալի կոդ՝ %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Սխալի նկարագրություն՝ %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Տվյալների բազան ընտրած չէ։" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Սյունակի ջնջում" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Առաջնային բանալիի ավելացում" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1758,56 +1764,56 @@ msgstr "Առաջնային բանալիի ավելացում" msgid "OK" msgstr "Լավ" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Կտտացրեք՝ այս ծանուցումը թաքցնելու համար" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Տվյալների բազաների վերանվանում" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Տվյալների բազայի կրկնապատկում" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Կոդավորման փոփոխում" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Միացնել արտաքին բանալիների ստուգումը" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Չհաջողվեց ստանալ տողերի իրական քանակը։" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Որոնում" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Թաքցնել որոնման արդյունքները" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Ցուցադրել որոնման արդյունքները" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Դիտարկում" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Ջնջում" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Պահված գործառույթի սահմանումը պետք է պարունակի RETURN արտահայտությունը։" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1824,44 +1830,44 @@ msgstr "" msgid "Export" msgstr "Արտահանում" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET խմբագիր" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "%s սյունակի արժեքները" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Նոր սյունակների արժեքները" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Մուտքագրեք ամեն արժեքը առանձին դաշտի մեջ։" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Ավելացնել %d արժեք" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Նշում՝ եթե ֆայլը պարունակում է բազմակի աղյուսակներ, դրանք կհամակցվեն մեկի " "մեջ։" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Թաքցնել հարցման դաշտը" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Ցուցադրել հարցման դաշտը" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1875,7 +1881,7 @@ msgstr "Ցուցադրել հարցման դաշտը" msgid "Edit" msgstr "Խմբագրել" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1887,41 +1893,41 @@ msgstr "Խմբագրել" msgid "Delete" msgstr "Հեռացնել" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d չի հանդիսանում վավերական տողի համարը։" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Արտաքին արժեքների զննում" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Ինքնապահպանված հարցումներ չկան" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "%d փոփոխական՝" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Ընտրել" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Սյունակի ընտրիչ" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Որոնել այս ցանկում" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1931,15 +1937,15 @@ msgstr "" "կենտրոնական սյունակների ցանկը պարունակում է սյունակներ, որոնք ընթացիկ " "աղյուսակում առկա չեն։" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Տեսնել ավելին" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Համոզվա՞ծ եք։" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1947,51 +1953,51 @@ msgstr "" "Այս գործողությունը կարող է փոխել որոշ սյունակների սահմանումները։
Համոզվա՞ծ եք, որ ցանկանում եք շարունակել։" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Շարունակել" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Ավելացնել առաջնային բանալի" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Առաջնային բանալին ավելացվեց։" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Անցում դեպի հաջորդ քայլ …" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "'%s' աղյուսակի կարգավորման առաջին քայլը ավարտված է։" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Քայլի ավարտ" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Կարգավորման երկրորդ քայլ (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Պատրաստ" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Հաստատեք մասնակի կախվածությունները" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Ընտրած մասնակի կախվածությունները հետևյալ են՝" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -1999,21 +2005,21 @@ msgstr "" "Նշում՝ a, b -> d,f ենթադրում է, որ a և b սյունակների համակցված արժեքները " "կարող են որոշել d և f սյունակների արժեքները։" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Ընտրած մասնակի կախվածություններ չկան։" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Ցուցադրեք ինձ հնարավոր մասնակի կախվածությունները՝ աղյուսակի տվյալների հիման " "վրա" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Թաքցնել մասնակի կախվածությունների ցանկը" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2021,167 +2027,168 @@ msgstr "" "Խնդրում ենք սպասել։ Սա կարող է տևել մի քանի վայրկյան՝ կախված տվյալների " "ծավալից և աղյուսակի սյունակների քանակից։" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Քայլ" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Կկատարվեն հետևյալ գործողությունները՝" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "ՋՆՋԵԼ %s սյունակները %s աղյուսակից" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Ստեղծել հետևյալ աղյուսակը" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Կարգավորման երրորդ քայլ (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Հաստատել անցողական կախվածությունները" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Ընտրած կախվածությունները հետևյալ են՝" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Ընտրած կախվածություններ չկան։" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Պահպանել" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Թաքցնել որոնման եզրերը" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Ցուցադրել որոնման եզրերը" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Որոնման ընդգրկույթ" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Սյունակի առավելագույնը՝" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Սյունակի նվազագույնը՝" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Նվազագույն արժեքը՝" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Առավելագույն արժեքը՝" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Թաքցնել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Ցուցադրել գտնելու և փոխարինելու եզրերը" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Ամեն կետը ներկայացնում է տվյալների տողը։" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Մկնիկը կետի վրա պահելուց կցուցադրվի դրա պիտակը։" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Խոշորացնելու համար՝ մկնիկով ընտրեք գծապատկերի հատվածը։" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Կտտացրեք 'Վերակայել չափը' կոճակը՝ սկզբնական չափերին վերադառնալու համար։" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Կտտացրեք տվյալների կետը՝ տվյալների տողը դիտելու և հավանաբար խմբագրելու համար։" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Գծագիրը կարող է չափափոխվել՝ այն ներքևի աջ անկյան երկայնքով քաշելու դեպքում։" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Ընտրեք երկու սյունակ" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Ընտրեք երկու տարբեր սյունակ" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Տվյալների կետի պարունակությունը" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Անտեսել" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Պատճենել" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Կետ" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Գիծ" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Բազմանկյուն" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Երկրաչափություն" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Ներքին ուրվագիծ" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Արտաքին ուրվագիծ" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Ցանկանու՞մ եք պատճենել ծածկագրման բանալին։" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Ծածկագրման բանալի" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2189,24 +2196,24 @@ msgstr "" "Ցուցադրում է, որ դուք կատարել եք փոփոխություններ այս էջում։ Դրանք չեղարկելու " "համար ձեզանից հաստատում կպահանջվի" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Ընտրեք հղման բանալին" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Ընտրեք արտաքին բանալին" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Ընտրեք առաջնային բանալիի կամ յուրահատուկ բանալիի սյունակը։" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Ընտրեք սյունակը՝ ցուցադրելու համար" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2214,77 +2221,77 @@ msgstr "" "Դուք չեք պահպանել դասավորության մեջ կատարած փոփոխությունները։ Առանց " "պահպանման դրանք չեղակրվելու են։ Շարունակե՞լ։" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Էջի անուն" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Պահպանել էջը" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Պահպանել էջը որպես" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Բացել էջը" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Ջնջել էջը" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Առանց վերնագրի" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Ընտրեք հաջորդ էջը" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Տրամադրեք վավերական էջի անունը" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Ցանկանու՞մ եք պահպանել փոփոխությունները ընթացիկ էջում։" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Էջը հաջողությամբ ջնջվեց" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Կապակցումների ուրվագրի արտահանում" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Փոփոխությունները պահպանվեցին" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ավելացնել հարաչափ \"%s\" սյունակի համար։" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "ստեղծվել է %d առարկա։" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Կատարել" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Սեղմեք Esc ստեղնը՝ խմբագրումը չեղարկելու համար։" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2292,41 +2299,41 @@ msgstr "" "Դուք խմբագրել եք որոշ տվյալներ, և դրանք դեռ չեն պահպանվել։ Համոզվա՞ծ եք, որ " "ցանկանում եք լքել այս էջը՝ առանց տվյալների պահպանման։" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Քաշեք՝ վերադասակարգելու համար։" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Կտտացրեք՝ այդյունքները այս սյունակով դասակարգելու համար։" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Կտտացրեք՝ նշելու/ապանշելու համար։" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Երկկտտացրեք՝ սյունակի անունը պատճենելու համար։" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Կտտացրեք ելնող սլաքը՝
սյունակի տեսանելիությունը փոխարկելու համար։" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Ցուցադրել բոլորը" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2335,13 +2342,13 @@ msgstr "" "պահպանելուց հետո ցանցավորման խմբագրման, նշատուփի, խմբագրման և ջնջման " "հղումների հետ կապված հատկությունները կարող են չաշխատել։" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Տրամադրեք վավերական տասնվեցերորդական տող։ Վավերական նշաններ են հանդիսանում " "0-9, A-F։" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2349,129 +2356,129 @@ msgstr "" "Իսկապե՞ս եք ցանկանում ցուցադրել բոլոր տողերը։ Մեծ աղյուսակի դեպքում դա կարող " "է խանգարել դիտարկչի աշխատանքը։" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Սկզբնական երկարություն" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "չեղարկել" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Ընդհատված" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Հաջողում" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Ներմուծել կարգավիճակը" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Քաշեք ֆայլերը այստեղ" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Սկզբից նշեք տվյալների բազան" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Դուք կարող եք խմբագրել արժեքների մեծ մասը՝
դրանց վրա անմիջապես " "երկկտտացնելով։" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Դուք կարող եք նաև խմբագրել տվյալների մեծ մասը
անմիջապես դրանց վրա " "կտտացնելով։" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Անցնել հղմանը՝" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Պատճենել սյունակի անունը։" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Աջ-կտտացրեք սյունակի անունը՝ այն պատճենելու համար։" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Ստեղծել գաղտնաբառը" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Ստեղծել" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Ավելին" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Ցուցադրել փեղկը" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Թաքցնել փեղկը" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Ցուցադրել թաքնված նավարկման ստորակարգման տարրերը։" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Կապել հիմնական փեղկին" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Ապակապել հիմնական փեղկից" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Բոլոր տվյալների բազաներով զտման համար սեղմեք Enter՝ որոնման հարցումը " "մուտքագրելուց հետո" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Տվյալների բազայում բոլոր %s-ներով զտելու համար սեղմեք Enter՝ որոնման " "հարցումը մուտքագրելուց հետո" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "աղյուսակների" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "ներկայացումների" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "ընթացակարգերի" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "իրադարձությունների" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "գործառույթների" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "Հարցված էջը չի գտնվել պատմության մեջ, հնարավոր է որ այն սպառվել է։" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2481,28 +2488,28 @@ msgstr "" "այն։ Ամենավերջին տարբերակն է՝ %s, թողարկված՝ %s։" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", վերջին կայուն տարբերակն է՝" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "արդի է" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Ստեղծել ներկայացում" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2510,15 +2517,15 @@ msgstr "" "Տեղի է ունեցել JavaScript-ի ճակատագրական սխալը։ Ցանկանու՞մ եք ուղարկել սխալի " "զեկույցը։" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Փոխել զեկուցման կայանքները" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Ցուցադրել զեկույցի մանրամասները" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2526,7 +2533,7 @@ msgstr "" "Ձեր արտահանումը թերի է՝ PHP-ի մակարդակում կատարման ժամանակի ցածր սահմանաչափի " "պատճառով։" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2536,391 +2543,391 @@ msgstr "" "ժամանակ որոշ դաշտերը կարող են անտեսվել՝ PHP-ի կազմաձևի max_input_vars արժեքի " "պատճառով։" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Սպասարկչում հայտնաբերվել են որոշակի սխալներ։" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Նայեք ընթացիկ պատուհանի ներքևի մասը։" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Անտեսել բոլորը" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Ձեր կայանքներին համապատասխան դրանք այժմ ներառվում են, խնդրում ենք սպասել։" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Կատարե՞լ այս հարցումը ևս մեկ անգամ։" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Իսկապե՞ս եք ցանկանում ջնջել այս էջանիշը։" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" "SQL-ի վրիպազերծման տեղեկությունները ստանալու ընթացքում տեղի է ունեցել սխալ։" -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s հարցում կատարվեց %s անգամ %s վայրկյանում։" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "փոխանցվեց %s փաստարկ" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Ցուցադրել փաստարկները" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Թաքցնել փաստարկները" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Տևողությունը՝" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Նախորդ" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Հաջորդ" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Այսօր" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Հունվարի" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Փետրվարի" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Մարտի" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Ապրիլի" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Մայիսի" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Հունիսի" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Հուլիսի" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Օգոստոսի" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Սեպտեմբերի" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Հոկտեմբերի" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Նոյեմբերի" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Դեկտեմբերի" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Հնվ" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Փտվ" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Մրտ" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Ապր" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Մյս" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Հնս" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Հյս" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Օգս" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Սպտ" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Հկտ" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Նյմ" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Դկտ" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Կիրակի" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Երկուշաբթի" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Երեքշաբթի" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Չորեքշաբթի" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Հինգշաբթի" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Ուրբաթ" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Շաբաթ" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Կիր" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Երկ" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Երք" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Չրք" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Հնգ" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ուր" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Շբթ" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Կի" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Եկ" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Եք" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Չք" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Հն" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Ու" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Շբ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Շաբ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "թ." -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Ժամ" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Րոպե" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Վայրկյան" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Այս դաշտը պարտադիր է" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Ուղղեք այս դաշտը" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Տրամադրեք վավերական էլ-փոստի հասցեն" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Տրանադրեք վավերական URL-ը" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Տրամադրեք վավերական ամսաթիվը" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Տրանադրեք վավերական ամսաթիվը ( ISO )" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Տրամադրեք վավերական թիվը" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Տրամադրեք վավերական վարկային քարտի համարը" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Մուտքագրեք միայն թվանշանները" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Մուտքագրեք նույն արժեքը ևս մեկ անգամ" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ ավել" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ պակաս" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Խնդրում ենք մուտքագրել արժեքը՝ {0}-ի և {1}-ի միջև երկարությամբ" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ի և {1}-ի միջև" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից պակաս կամ հավասար" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից ավել կամ հավասար" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Խնդրում ենք վավերական ամսաթիվը և ժամանակը" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Խնդրում ենք մուտքագրել վավերական տասնվեցերորդական արժեքը" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3785,7 +3792,7 @@ msgstr "Ցուցակագրեր" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Գործողություն" @@ -3796,8 +3803,8 @@ msgid "Keyname" msgstr "Բանալիի անվանումը" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3829,9 +3836,9 @@ msgstr "Համադրում" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Մեկնաբանություն" @@ -3846,14 +3853,14 @@ msgstr "%s ցուցակագիրը ջնջվեց։" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Ջնջել" @@ -3967,7 +3974,7 @@ msgstr "Հետագծում" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4614,23 +4621,29 @@ msgstr "Բազմակնկյունների հավաքակազմ" msgid "A collection of geometry objects of any type" msgstr "Ցանկացած տեսակների երկրաչափական առարկաների հավաքակազմ" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Թվային" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Ամսաթիվ և ժամանակ" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Տարածական" @@ -4778,7 +4791,7 @@ msgstr "Օգտագործել այս արժեքը" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Տողեր" @@ -4861,7 +4874,7 @@ msgstr "ՈՉ" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Անուն" @@ -7705,7 +7718,8 @@ msgid "No data to display" msgstr "Ցուցադրելու տվյալներ չկան" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7739,32 +7753,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "'%s' անունը ամրագրված է MySQL-ի կողմից օգտագործման համար։" msgstr[1] "'%s' անունները ամրագրված են MySQL-ի կողմից օգտագործման համար։" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Ընտրած սյունակներ չկան։" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Հարցման սխալ" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Հարցման սխալ" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Փոխել" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7775,20 +7790,20 @@ msgstr "Փոխել" msgid "Index" msgstr "Ցուցակագիր" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Տարածական" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Ամբողջ գրվածքով" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Հատուկ արժեքները" @@ -9127,7 +9142,7 @@ msgstr "Նոր" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Ներկայացումներ" @@ -9561,32 +9576,32 @@ msgid "Delete the table (DROP)" msgstr "Ջնջել աղյուսակը (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Վերլուծել" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Ստուգում" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Բարելավվում" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Վերակառուցում" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9604,6 +9619,7 @@ msgid "Partition %s" msgstr "Մասնաբաժին %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Հեռացնել մասնահատումը" @@ -9808,7 +9824,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9832,21 +9848,21 @@ msgstr "Սահմանում" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Աղյուսակի կառուցվածքը" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9936,7 +9952,7 @@ msgid "Database:" msgstr "Տվյալների բազան՝" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Տվյալներ՝" @@ -10028,7 +10044,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Դատարկել աղյուսակը՝ տվյալներ զետեղելուց առաջ" @@ -10098,7 +10114,7 @@ msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ընթ #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10163,24 +10179,24 @@ msgstr "AUTO_INCREMENT՝ պահպանված աղյուսակների համար" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT՝ աղյուսակի համար" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "ԱՂՅՈՒՍԱԿՆԵՐԻ MIME ՏԵՍԱԿՆԵՐԸ" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Ըստ երևույթի, ձեր ՏԲ-ն օգտագործում է ձգաններ;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Տվյալների կարդալու սխալ՝" @@ -11750,7 +11766,6 @@ msgid "User group" msgstr "Օգտվողների խումբ" #: libraries/server_privileges.lib.php:730 -#| msgid "Does not requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Չի պահանջում SSL ծածկագրմամբ միացում։" @@ -14020,7 +14035,7 @@ msgid "Pick from Central Columns" msgstr "Ընտրել կենտրոնական սյունակներից" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Արտահայտություն" @@ -14034,64 +14049,64 @@ msgstr "առաջին" msgid "after %s" msgstr "%s-ից հետո" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "Մասնաբաժին ըստ՝" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "Արտահայտություն կամ սյունակների ցանկ" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "Մասնաբաժիններ՝" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "Ենթամասնաբաժին ըստ՝" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "Ենթամասնաբաժիններ՝" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "Մասնաբաժին" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "Արժեքները" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "Ենթամասնաբաժին" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "Պահպանման տեսակ" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "Տվյալների պանակ" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "Ցուցակագրի պանակ" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "Առավելագույն տողեր" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "Նվազագույն տողեր" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "Աղյուսակի տարածություն" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "Հանգույցի խումբ" @@ -14791,26 +14806,45 @@ msgid "at beginning of table" msgstr "աղյուսակի սկզբում" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Մասնաբաժիններ" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Ցուցակագիրը սահմանված չէ։" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Մասնահատված ըստ՝" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Ենթամասնահատված ըստ՝" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Տվյալների երկարությունը" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Ցուցակագրի երկարությունը" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition by:" +msgid "Partition table" +msgstr "Մասնաբաժին ըստ՝" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Հեռացնել մասնահատումը" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Խմբագրել ներկայացումը" diff --git a/po/ia.po b/po/ia.po index f8d4785605..be1a408c5f 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-29 22:16+0200\n" "Last-Translator: Giovanni Sora \n" -"Language-Team: Interlingua " -"\n" +"Language-Team: Interlingua \n" "Language: ia\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,8 +171,8 @@ msgid "Comments" msgstr "Commentos" #: db_datadict.php:156 -#: libraries/controllers/TableStructureController.class.php:952 -#: libraries/controllers/TableStructureController.class.php:957 +#: libraries/controllers/TableStructureController.class.php:1183 +#: libraries/controllers/TableStructureController.class.php:1188 #: libraries/tracking.lib.php:922 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 @@ -180,7 +180,7 @@ msgstr "Commentos" msgid "Primary" msgstr "Primari" -#: db_datadict.php:166 js/messages.php:317 libraries/Index.class.php:567 +#: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 libraries/mult_submits.lib.php:403 @@ -204,16 +204,16 @@ msgstr "Primari" msgid "No" msgstr "No" -#: db_datadict.php:166 js/messages.php:444 libraries/Index.class.php:568 +#: db_datadict.php:166 js/messages.php:445 libraries/Index.class.php:568 #: libraries/Index.class.php:605 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/controllers/TableStructureController.class.php:541 -#: libraries/controllers/TableStructureController.class.php:1203 -#: libraries/controllers/TableStructureController.class.php:1212 -#: libraries/controllers/TableStructureController.class.php:1217 -#: libraries/controllers/TableStructureController.class.php:1222 -#: libraries/controllers/TableStructureController.class.php:1227 +#: libraries/controllers/TableStructureController.class.php:772 +#: libraries/controllers/TableStructureController.class.php:1434 +#: libraries/controllers/TableStructureController.class.php:1443 +#: libraries/controllers/TableStructureController.class.php:1448 +#: libraries/controllers/TableStructureController.class.php:1453 +#: libraries/controllers/TableStructureController.class.php:1458 #: libraries/mult_submits.inc.php:82 libraries/mult_submits.inc.php:195 #: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 #: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 @@ -255,7 +255,7 @@ msgstr "Il non ha tabulas in le base de datos." #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:119 -#: templates/database/structure/show_create.phtml:18 +#: templates/database/structure/show_create.phtml:19 msgid "Tables" msgstr "Tabellas" @@ -422,23 +422,23 @@ msgid "Point:" msgstr "Puncto:" #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 -#: gis_data_editor.php:370 js/messages.php:433 +#: gis_data_editor.php:370 js/messages.php:434 msgid "X" msgstr "X" #: gis_data_editor.php:217 gis_data_editor.php:245 gis_data_editor.php:301 -#: gis_data_editor.php:376 js/messages.php:434 +#: gis_data_editor.php:376 js/messages.php:435 msgid "Y" msgstr "Y" #: gis_data_editor.php:239 gis_data_editor.php:295 gis_data_editor.php:368 -#: js/messages.php:436 +#: js/messages.php:437 #, php-format msgid "Point %d" msgstr "Puncto %d" #: gis_data_editor.php:252 gis_data_editor.php:308 gis_data_editor.php:386 -#: js/messages.php:442 +#: js/messages.php:443 msgid "Add a point" msgstr "Adde un puncto" @@ -460,7 +460,7 @@ msgstr "Circulo interne %d:" msgid "Add a linestring" msgstr "Adde un linestring" -#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:443 +#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:444 msgid "Add an inner ring" msgstr "Adde un circulo interne" @@ -477,7 +477,7 @@ msgstr "Adde un polygono" msgid "Add geometry" msgstr "Adde un geometria" -#: gis_data_editor.php:409 js/messages.php:292 +#: gis_data_editor.php:409 js/messages.php:293 #: libraries/DbSearch.class.php:464 libraries/DisplayResults.class.php:1799 #: libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:166 @@ -532,7 +532,7 @@ msgstr "" msgid "Succeeded" msgstr "Ha havite successo" -#: import.php:58 js/messages.php:501 +#: import.php:58 js/messages.php:502 msgid "Failed" msgstr "Fallite" @@ -630,7 +630,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "Il non pote incargar le progression del importation." -#: import_status.php:112 js/messages.php:378 libraries/Util.class.php:780 +#: import_status.php:112 js/messages.php:379 libraries/Util.class.php:780 #: libraries/export.lib.php:518 #: libraries/plugins/schema/Export_Relation_Schema.class.php:298 #: user_password.php:253 @@ -656,7 +656,7 @@ msgstr "" msgid "General settings" msgstr "Preferentias general" -#: index.php:191 js/messages.php:525 +#: index.php:191 js/messages.php:526 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:247 msgid "Change password" @@ -964,7 +964,13 @@ msgstr "" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Tu vermente vole TRUNCAR le partition(es) seligite?" -#: js/messages.php:67 +#: js/messages.php:66 +#, fuzzy +#| msgid "Do you really want to TRUNCATE the selected partition(s)?" +msgid "Do you really want to remove partitioning?" +msgstr "Tu vermente vole TRUNCAR le partition(es) seligite?" + +#: js/messages.php:68 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -978,15 +984,15 @@ msgstr "" "iste caso on suggere que tu reverte le collation original e refere al " "consilios " -#: js/messages.php:73 +#: js/messages.php:74 msgid "Garbled Data" msgstr "Datos confuse" -#: js/messages.php:75 +#: js/messages.php:76 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Tu es secur que tu vole modificar le collation e converter le datos?" -#: js/messages.php:77 +#: js/messages.php:78 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -996,168 +1002,168 @@ msgid "" "" msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" "Tu es secur que tu vole modificar omne collationes e converter le datos?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Salveguarda & claude" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Refixa" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Refixa toto" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Valore mancante in le formulario!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Selige al minus un del optiones!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Pro favor inserta un numero valide!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Pro favor inserta un longor valide!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Adde indice" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Modifica indice" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Adde %s columna(s) al indice" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Crea indice de columna singule" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Crea indice composite" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Composite con:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Pro favor tu selige columna(s) pro le indice." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Tu debe adder al minus un columna." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Vista preliminar SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simula query" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Rangos coincidente trovate:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "Query SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Valores pro le axis Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Le nomine de hospite es vacue!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Le nomine de usator es vacue!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Le contrassigno es vacue!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Le contrasignos non es le mesme!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Removente usatores selectionate" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Claude" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Patrono ha essite create." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Patrono esseva cargate." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Patrono esseva actualisate." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Patrono ha essite delite." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Altere" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Connexiones/Processos" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Configuration local del monitor incompatibile!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1170,155 +1176,155 @@ msgstr "" "plus. Pro favor tu fixa le configuration al valores predefinite in le menu " "de Preferentias." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Efficientia del cache de query" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Usage del cache de query" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Cache de query usate" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Usage de CPU de systema" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Memoria de systema" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Swap de systema" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Cargo medie" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memoria total" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memoria in cache" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memoria de buffer" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memoria libere" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memoria usate" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Swap total" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Swap in cache" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Swap usate" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Swap libere" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes inviate" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Buytes recipite" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Connexiones" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Processos" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabella/s" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Demandas" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Preferentias" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "adde graphico a grillia" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Pro favor tu adde al minus un variabile al series!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1330,47 +1336,47 @@ msgstr "Pro favor tu adde al minus un variabile al series!" msgid "None" msgstr "Necun" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Reprende monitor" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Pausa monitor" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Initia auto refrescamento" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Stoppa auto refrescamento" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query es habilitate." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log es habilitate." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query es habilitate." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query e general_log es dishabilitate." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output non es fixate a TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output es fixate a TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1381,12 +1387,12 @@ msgstr "" "prende plus que %d secundas. Il es consiliabile fixar long_query_time a 0-2 " "secundas, secundo tu systema." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time es fixate a %d secunda(s)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1395,30 +1401,30 @@ msgstr "" "predefinite quando on reinitia le servitor:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Fixa log_output a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Habilita %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Dishabilita %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Fixa long_query_time a %d secundas." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1426,61 +1432,61 @@ msgstr "" "Tu non pote modificar iste variabiles. Pro favor accede como root o continge " "tu administrator del base de datos." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Modifica preferentias" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Preferentias currente" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Differential" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Dividite per %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unitate" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Ex slow log" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Ex registro general" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "Le nomine del base de datos non es cognoscite pro iste query in le registros " "de servitor." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analysante registros" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" "Analysante e cargante registros. Iste operation poterea prender alcun " "tempore." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Cancella requesta" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1491,7 +1497,7 @@ msgstr "" "de gruppar, assi que le altere attributos de query, tal como le tempore de " "initio, pote differer." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1500,34 +1506,34 @@ msgstr "" "Proque le option de gruppar le querys de INSERT ha essite seligite, on " "gruppara iste querys sur le mesme tabella, per ignorar le datos insertate." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Datos de registro cargate. Query executate in iste intervallo de tempore:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Vade a tabella de registro" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Il non trovava alcun dato" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Le registro (log) ha essite analysate, ma necun dato ha essite trovate pro " "iste intervallo de tempore." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analysante…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Explica le exito" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1535,7 +1541,7 @@ msgstr "Explica le exito" msgid "Status" msgstr "Stato" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1545,58 +1551,58 @@ msgstr "Stato" msgid "Time" msgstr "Tempore" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Tempore total:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Exitos del profiling" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabella (Tabula)" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Graphico" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Optiones de filtro per le registro de tabellas" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtra" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtra query per parola/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Gruppa query per ignorar datos variabile in propositiones de WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Summa del rangos gruppate:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Cargante registros" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Il falleva actualisar monitor" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1606,28 +1612,28 @@ msgstr "" "invalide. Isto poterea esser perque tu session expirava. Si on recarga le " "pagina e reinserta tu datos de accesso, il poterea esser te utile." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Recarga pagina" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Rangos implicate:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Le analysis de syntaxe del file falleva. Il sembla non esser un codice JSON " "valide." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Il falleva construer grillia de graphico con le configuration importate. On " "refixa al configuration predefinite…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1637,59 +1643,59 @@ msgstr "" msgid "Import" msgstr "Importa" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importa configuration de monitor" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Pro favor selige le file que tu vole importar." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Nulle files disponibile sur le servitor pro importar!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analysa query" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Systema de advisor" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Possibile problemas de prestationes" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problema" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Recommendation" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Detalios de regula" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Justification" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Variabile/formula utilisate" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Essaya" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Formatante SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1700,59 +1706,59 @@ msgstr "Formatante SQL…" msgid "Cancel" msgstr "Cancella" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Preferentias referite al pagina" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Applica" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Cargar…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Requesta abortate!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Requesta de tractamento" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Requesta fallite!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Error in le requesta de tractamento" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Codice de error: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Texto de error: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Necun base de datos seligite." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Depone columna" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Addente clave primari" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1762,57 +1768,57 @@ msgstr "Addente clave primari" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Pulsa pro dimitter iste notification" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Renominante base de datos" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Copiante base de datos" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Modificante insimul de characteres" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Habilita le verificationes sur le clave estranie" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Il falleva obtener ver computo de rango." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Cercante" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Cela exitos de cerca" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Monstra exitos de cerca" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Navigar" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Delente" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "Le definition del function immagasinate debe continer un declaration de " "RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1829,44 +1835,44 @@ msgstr "" msgid "Export" msgstr "Exporta" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Editor de ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Valores pro le columna %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Valores pro un nove columna" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Inserta cata valor in un campo separate." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Adde %d valor(es)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: si le file contine plus que un tabella, le datos essera fusionate in " "un tabella unic." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Cela quadro de query" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Monstra quadro de query" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1880,7 +1886,7 @@ msgstr "Monstra quadro de query" msgid "Edit" msgstr "Modifica" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1892,41 +1898,41 @@ msgstr "Modifica" msgid "Delete" msgstr "Dele" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d non es un valide numero de rangos." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Naviga inter valores externe" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Nulle query auto-salveguardate" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Prende" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Selector de columnas" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Cerca in iste lista" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1936,15 +1942,15 @@ msgstr "" "central per le base de datos %s ha columnas non presente in le columna " "currente." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Vide cosas ulterior" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Tu es secur?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1952,51 +1958,51 @@ msgstr "" "Iste action pote modificar alcun definition de columnas.
Tu es secur que " "tu vole continuar?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Continua" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Adde clave primari" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Clave primari addite." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Ducente te al proxime passo…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Le prime passo pro normalisar es complete pro tabella '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Fin del passo" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Secunde passo de normalisation (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Facite" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Confirma dependentias partial" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Dependentias partial seligite es como il seque:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2004,20 +2010,20 @@ msgstr "" "Nota: a, b -> d,f implica que valore de columnas a e b combinate insimul " "pte determinar valores de columna d e columna f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Necun dependentias partial seligite!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Monstra me le possibile dependentias partial basate sur datos in le tabella" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Cela lista de dependentias partial" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2025,169 +2031,170 @@ msgstr "" "Mantene te firme! Il poterea prender alcun secundas in dependentia del " "grandor de datos e del computo de columna sur le tabella." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Passo" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Le sequente actiones essera executate:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP (abandona) columnas %s ab le tabella %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Crea le sequente tabella" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Tertie passo de normalisation (2NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Confirma dependentias transitive" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Dependentias seligite es como il seque:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Necun dependentias seligite!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salveguarda" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Cela criterios de cerca" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Monstra criterios de cerca" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Extension de cerca" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Maximo de columna:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Minimo de columna:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Minime valor:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Maxime valor:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Cela criterios de cercar e de reimplaciar" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Monstra criterios de cercar e de reimplaciar" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Cata puncto representa un rango de datos." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Si on flotta sur un puncto, il monstrara su etiquetta." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" "Pro aggrandir per le zoom, selige un section del area del graphico con le " "mus." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Pulsa le button de refixar le zoom pro reverter al stato original." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Pulsa sur un puncto de datos pro vider e forsan modificar le rango de datos." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Le area de graphico pote esser redimensionate per traher lo verso le angulo " "in basso a dextera." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Selige duo columnas" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Selige duo columnas differente" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Contento del puncto de datos" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Copia" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Puncto" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Linestring (catena de linea)" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polygono" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Circulo interne" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Circulo externe" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Tu vole copiar le clave de cryptation?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Clave de cryptation" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2195,24 +2202,24 @@ msgstr "" "Indicante que tu ha facite modificationes a iste pagina; tu essera demandate " "de confirmar ante abandonar modificationes" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Selige clave de referentia" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Selige clave estranie" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Pro favor selige le clave primari o un clave unic!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Selige columna de monstrar" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2220,77 +2227,77 @@ msgstr "" "Tu non ha salveguardate le modificationes in le disposition (layout). Istos " "essera perdite si tu non salveguarda los. Tu vole continuar?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Nomine de pagina" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salveguarda pagina" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salveguarda pagina como" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Aperi pagina" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Dele pagina" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Untitled (Sin titulo)" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Pro favor selige un pagina pro continuar" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Pro favor inserta un nomine valide de pagina" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Tu vole salveguardar le modificationes del pagina currente?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "On ha delite successosemente le pagina" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Exporta le schema relational" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Modificationes ha essite salveguardate" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adde un option pro le columna \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objecto(s) create." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Invia" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Pressa le clave de escape pro cancellar le modification." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2298,15 +2305,15 @@ msgstr "" "Tu ha modificate alcun datos e illos non ha essite salveguardate. Tu es " "secur que tu vole abandonar iste pagina ante salveguardar le datos?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Trahe pro reordinar." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Pulsa pro ordinar exitos per iste columna." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2316,28 +2323,28 @@ msgstr "" "per) o pro commutar inter ASC/DESC.
- Ctrl+Clickr o Alt+Click (Mac: " "Shift+Option+Click) pro remover columna ab le clausula de ORDER BY" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Pulsa pro seliger/deseliger." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Duple pulsa pro copiar le nomine de columna." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Pulsa sur le flecha de disrolar
pro commutar le visibilitate del " "columna." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Monstra omnes" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2346,13 +2353,13 @@ msgstr "" "modificar, copiar, marcar, deler le grillia poterea non functionar post " "salveguardar." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Pro favor, tu inserta in valide catena hexadecimal. Characteres valide es " "0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2360,132 +2367,132 @@ msgstr "" "Vermente tu vole vider omne rangos? Pro un grande tabella isto poterea vader " "in crash le navigator." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Fortia original" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "cancella" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Abortate" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Successo" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Depone files hic" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Prime selige un base de datos" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Tu pote anque modificar plure de valores
per duple pulsar directemente " "super illos." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Tu anque pote modificar plure de valores
per pulsar directemente super " "illos." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Vade al ligamine:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Copia nomine de columna." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Pulsa a dextere le nomine de columna pro copiar lo in tu tabuliero de " "systema." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Genera contrasigno" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Genera" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Altere" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Monstra pannello" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Cela pannello" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Monstra elementos de arbore de navigation celate." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Ligamine con pannello principal" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Leva ligamine ex pannello principal" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Pro filtrar omne base de datos sur le servitor, pressa Enter postea un " "termino de cerca" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Pro filtrar omne %s base de datos, pressa Enter postea un termino de cerca" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "tabellas" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "vistas" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "proceduras" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "eventos" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "functiones" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Il non trovava le pagina requirite in le chronologia, il poterea esser " "expirate." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2495,28 +2502,28 @@ msgstr "" "actualisation. Le version plus nove e %s, liverate le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", ultime version stabile:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "actualisate" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Invia reporto de errores" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Submitte reporto de error" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2524,15 +2531,15 @@ msgstr "" "Un error fatal de JavaScript ha occurrite. Tu vole inviar un reporto de " "error?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Modifica preferentias de reporto" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Monstra detalios de reporto" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2540,7 +2547,7 @@ msgstr "" "Tu exportation es incomplete, debite a un basse limite de tempore de " "execution al nivello de PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2550,62 +2557,62 @@ msgstr "" "alcun del campos poterea esser ignorate, debite al configuration de " "max_input_vars de PHP." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Alcun errores ha essite relevate sur le servitor!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Pro favor tu al basso de iste fenestra." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignora Omne" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "A proposito de tu preferentias, illos es preste pro esser submittite " "currentemente, pro favor tu es patiente." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Executa novemente iste query?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Tu es vermente secur que tu vole deler iste marcator de libro?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" "Alcun error occurreva durante que on obteneva information super le debug de " "SQL." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries executate %s vices in %s secundas." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) passate" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Monstra argumentos" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Cela argumentos" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Tempore utilisate:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2616,331 +2623,331 @@ msgstr "" "propriemente pro te. In Safari, tal problema es communmente causate per " "\"Private Mode Browsing (Modo de navigation private)\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Mense previe" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Mense proxime" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Hodie" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Januario" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Februario" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Martio" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "April" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Maio" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Junio" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Julio" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Augusto" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Septembre" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Octobre" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Novembre" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Decembre" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dec" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Dominica" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Lunedi" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Martedi" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Mercuridi" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Jovedi" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Venerdi" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sabbato" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Jov" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Sept" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendario-mense-anno" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "necun" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Hora" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minuta" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Secunda" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Iste campo es requirite" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Pro favor corrige iste campo" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Pro favor inserta un valide adresse de e-posta" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Pro favor inserta un valide URL" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Pro favor inserta un valide data" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Pro favor inserta un nomine valide data (ISO)" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Pro favor inserta un numero valide" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Pro favor inserta un numero valide de carta de credito" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Pro favor inserta solmente digitos" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Pro favor inserta novemente le mesme valor" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Pro favor inserta plus que {0} characteres" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Pro favor inserta al minus {0} characteres" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Pro favor inserta un valor de longor de characteres inter {0} e {1}" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Pro favor inserta un valor inter {0} e {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Pro favor inserta un valor minor o equal a {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Pro favor inserta un major o equal a {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Pro favor inserta un data o tempore valide" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Pro favor inserta un valide ingresso HEX" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3807,7 +3814,7 @@ msgstr "Indices" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Action" @@ -3818,8 +3825,8 @@ msgid "Keyname" msgstr "Nomine clave" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3851,9 +3858,9 @@ msgstr "Collation" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Commento" @@ -3868,14 +3875,14 @@ msgstr "Indice %s ha essite delite." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Lassa cader" @@ -3988,7 +3995,7 @@ msgstr "Traciamento" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4679,23 +4686,29 @@ msgstr "Un collection de polygonos" msgid "A collection of geometry objects of any type" msgstr "Un collection de objectos de geometria de omne typo" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numeric" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Data e tempore" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Catena" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Spatial" @@ -4739,12 +4752,10 @@ msgid "Analyze Explain at %s" msgstr "Explication de Analysis a %s" #: libraries/Util.class.php:1222 -#| msgid "Without PHP Code" msgid "Without PHP code" msgstr "Sin codice PHP" #: libraries/Util.class.php:1234 -#| msgid "Submit Query" msgid "Submit query" msgstr "Submitte query" @@ -4848,7 +4859,7 @@ msgstr "Usa iste valor" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rangos" @@ -4931,7 +4942,7 @@ msgstr "NO" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nomine" @@ -8042,7 +8053,8 @@ msgid "No data to display" msgstr "Necun dato de monstrar" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8076,32 +8088,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Error de query" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Error de query" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifica" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8112,20 +8125,20 @@ msgstr "Modifica" msgid "Index" msgstr "Indice" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Valores distincte" @@ -9547,7 +9560,7 @@ msgstr "Nove" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Vistas" @@ -10022,32 +10035,32 @@ msgid "Delete the table (DROP)" msgstr "Dele le tabella (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analysa" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Verifica" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimiza" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Reconstrue" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10065,6 +10078,7 @@ msgid "Partition %s" msgstr "Partition %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Remove partitionemento" @@ -10270,7 +10284,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -10294,21 +10308,21 @@ msgstr "Definition" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10398,7 +10412,7 @@ msgid "Database:" msgstr "Base de datos:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Datos:" @@ -10494,7 +10508,7 @@ msgid "Data creation options" msgstr "Optiones de creation de datos" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10579,7 +10593,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10644,24 +10658,24 @@ msgstr "AUTO_INCREMENT pro tabellas delite (dumped)" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT pro tabella" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Structura pro vider %s exportate como un tabella" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Il habeva un error quando on legeva datos:" @@ -12225,7 +12239,6 @@ msgid "User group" msgstr "Gruppo de Usator" #: libraries/server_privileges.lib.php:730 -#| msgid "Requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Il non require connexiones cryptate SSL." @@ -12287,7 +12300,6 @@ msgstr "" #: libraries/server_privileges.lib.php:3179 #: libraries/server_privileges.lib.php:4437 #: templates/privileges/edit_routine_privileges.phtml:11 -#| msgid "Routines" msgid "Routine" msgstr "Routine" @@ -12503,7 +12515,6 @@ msgstr "" #: libraries/server_privileges.lib.php:3178 #: templates/privileges/edit_routine_privileges.phtml:12 -#| msgid "Check privileges" msgid "Routine-specific privileges" msgstr "Privilegios specific pro le routine" @@ -14465,7 +14476,7 @@ msgid "Pick from Central Columns" msgstr "Prende ex le columnas central" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Expression" @@ -14479,79 +14490,64 @@ msgstr "prime" msgid "after %s" msgstr "post %s" -#: templates/columns_definitions/partitions_form.phtml:9 -#| msgid "Partitioned by:" +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "Partition per:" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 -#| msgid "Values for column %s" +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "Lista de expression o de columna" -#: templates/columns_definitions/partitions_form.phtml:30 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "Partitiones:" -#: templates/columns_definitions/partitions_form.phtml:38 -#| msgid "Partitioned by:" +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "Subpartition per:" -#: templates/columns_definitions/partitions_form.phtml:59 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "Subpartitiones:" -#: templates/columns_definitions/partitions_form.phtml:71 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "Partition" -#: templates/columns_definitions/partitions_form.phtml:72 -#| msgid "Value" +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "Valores" -#: templates/columns_definitions/partitions_form.phtml:74 -#| msgid "Partitions" +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "Subpartition" -#: templates/columns_definitions/partitions_form.phtml:76 -#| msgid "Engines" +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "Motor" -#: templates/columns_definitions/partitions_form.phtml:78 -#| msgid "Data home directory" +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "Directorio de datos" -#: templates/columns_definitions/partitions_form.phtml:79 -#| msgid "Save directory" +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "Directorio indice" -#: templates/columns_definitions/partitions_form.phtml:80 -#| msgid "Matched rows:" +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "Numero maxime de rangos" -#: templates/columns_definitions/partitions_form.phtml:81 -#| msgid "Filter rows" +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "Numero minime de rangos" -#: templates/columns_definitions/partitions_form.phtml:82 -#| msgid "Table search" +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "Spatio de tabella" -#: templates/columns_definitions/partitions_form.phtml:83 -#| msgid "User group" +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "Gruppo de nodos" @@ -14943,7 +14939,6 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally." msgstr "" #: templates/privileges/add_privileges_routine.phtml:3 -#| msgid "Add privileges on the following database(s):" msgid "Add privileges on the following routine:" msgstr "Adde le privilegios sur le sequente routine:" @@ -15259,26 +15254,45 @@ msgid "at beginning of table" msgstr "a le initio de tabella" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Partitiones" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Necun indice definite!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Partitionate per:" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Longessa de datos" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Longessa de Indice" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition by:" +msgid "Partition table" +msgstr "Partition per:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Remove partitionemento" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/id.po b/po/id.po index ff5229b2c7..d3f8dfc190 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-06-17 06:05+0200\n" "Last-Translator: Tommy Surbakti \n" "Language-Team: Indonesian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Simpan & Tutup" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Reset" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Ulang Semua" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Data dalam form kurang !" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Pilih salah satu dari opsi!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Tambahkan indeks" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Mengedit Indeks" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Tambahkan %s kolom ke index" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Buat index kolom-tunggal" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Buat index gabungan" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Gabung dengan:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Pilih kolom untuk di index." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Anda perlu menambahkan paling tidak satu kolom." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Pratinjau SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simulasikan query" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Baris yang cocok:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "Query SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Nilai Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Nama inang kosong!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Nama pengguna kosong!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Kata sandi kosong!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Kata sandi tidak sama!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Hapus pengguna yang dipilih" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Tutup" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "Jumlah halaman yang dibuat." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil telah diperbarui." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Baris telah dihapus." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Lainnya" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Koneksi / Proses" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Konfigurasi monitor lokal tidak kompatibel!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1174,165 +1180,165 @@ msgstr "" "Anda saat ini tidak lagi bekerja. Harap reset konfigurasi menjadi bawaan " "pada menu Pengaturan." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Efisiensi singgahan kueri" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Pemakaian singgahan kueri" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Singgahan kueri terpakai" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Penggunaan CPU Sistem" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Memori sistem" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Swap sistem" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Beban rata-rata" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memori total" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memori singgahan" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memori tersangga" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memori bebas" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memori terpakai" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Swap Total" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Swap Singgahan" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Swap Terpakai" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Swap Bebas" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bita dikirim" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bita diterima" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Koneksi" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Proses Aktif" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabel" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Perintah" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Lalu Lintas" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Pengaturan" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Tambahkan bagan pada grid" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1344,47 +1350,47 @@ msgstr "Harap tambahkan paling tidak satu variabel ke dalam seri!" msgid "None" msgstr "Tidak ada" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Lanjutkan pemantauan" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Jeda pemantauan" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Mulai penyegaran otomatis" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Hentikan Penyegaran Otomatis" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log dan slow_query_log diaktifkan." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log diaktifkan." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log diaktifkan." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log dan general_log dinonaktifkan." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output tidak disetel menjadi TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output disetel menjadi TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1395,12 +1401,12 @@ msgstr "" "lama dari %d detil. Disarankan untuk menyetel long_query_time 0-2 detik, " "tergantung sistem Anda." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time disetel menjadi %d detik." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1409,30 +1415,30 @@ msgstr "" "sewaktu server dijalankan ulang:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Tetapkan log_output ke %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Aktifkan %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Nonaktifkan %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Setel long_query_time menjadi %d detik." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1440,57 +1446,57 @@ msgstr "" "Anda tidak dapat mengubah variabel tersebut. Harap masuk sebagai root atau " "hubungi administrator basis data Anda." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Ubah pengaturan" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Judul bagan" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Diferensial" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Dibagi oleh %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unit" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Dari log lambat" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Dari log umum" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "Nama database tidak diketahui untuk query ini dalam log server." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Menganalisis log" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Menganalisis & memuat log. Mungkin perlu waktu." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Permintaan pembatalan" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1500,7 +1506,7 @@ msgstr "" "Namun, hanya kueri SQL yang digunakan sebagai kriteria pengelompokan. " "Atribut kueri lain, seperti waktu mulai, dapat berbeda." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1509,32 +1515,32 @@ msgstr "" "Sejak pengelompokan query INSERT telah dipilih, INSERT query ke dalam tabel " "yang sama juga sedang dikelompokkan bersama, mengabaikan data dimasukkan." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Data log dimuat. Query dieksekusi dalam rentang waktu ini:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Langsung ke tabel Log" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Data tidak ditemukan" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Log dianalisis, tetapi tidak ada data ditemukan dalam rentang waktu ini." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Menganalisis…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Jelaskan hasil" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1542,7 +1548,7 @@ msgstr "Jelaskan hasil" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1552,58 +1558,58 @@ msgstr "Status" msgid "Time" msgstr "Waktu" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Total waktu:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profil Hasil" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Bagan" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Opsi filter tabel log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filter" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Saring query berdasarkan kata/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Pengelompokan queri, abakan variabel data dalan klausa WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Jumlah baris kelompok:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Total:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Memuat log" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Penyegaran layar gagal" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1613,26 +1619,26 @@ msgstr "" "kemungkinan besar karena sesi Anda berakhir. Muat ulang halaman dan masukkan " "ulang kredensial Anda akan membantu." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Muat ulang halaman" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Baris yang terpengaruh:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "Gagal mengurai berkas config.Ini mungkin kesalahan kode JSON." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Gagal membangun Grafik kisi dengan mengimport config. Mengembalikan ke " "Setelan baku…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1642,61 +1648,61 @@ msgstr "" msgid "Import" msgstr "Impor" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Impor konfigurasi monitor" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Silahkan pilih berkas yang ingin anda impor." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Tidak ada berkas tersedia untuk diimport!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analisis Kueri" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Sistem penasihat" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Isu kinerja yang mungkin" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Isu" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Rekomendasi" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Detail aturan" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Justifikasi" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Variabel / formula terpakai" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Uji" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Memformat SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1707,73 +1713,73 @@ msgstr "Memformat SQL…" msgid "Cancel" msgstr "Batal" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Ubah pengaturan" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Terapkan" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Memproses…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Permintaan Dibatalkan!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Memproses Permintaan" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Permintaan gagal!!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Galat sewaktu memproses permintaan." -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Kode Kesalahan: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Pesan Kesalahan: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Basis data belum dipilih." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Menghapus Kolom" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Tambahkan kunci primer" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1783,63 +1789,63 @@ msgstr "Tambahkan kunci primer" msgid "OK" msgstr "Oke" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Klik untuk menyingkirkan pemberitahuan" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Ubah nama basis data" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Menyalin Basis Data" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Mengganti Set Karakter" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Tanpa pemeriksaan kunci asing" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Gagal mengambil jumlah baris sebenarnya." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Pencarian" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Tampilkan hasil pencarian" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Menjelajahi" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Menghapus" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definisi fungsi disimpan harus mengandung pernyataan RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1856,44 +1862,44 @@ msgstr "Definisi fungsi disimpan harus mengandung pernyataan RETURN!" msgid "Export" msgstr "Ekspor" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Editor ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Nilai untuk kolom %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Nilai untuk kolom baru" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Masukkan setiap nilai dalam kolom terpisah." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Tambahkan nilai %d" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Catatan: Jika berkas mengandung banyak tabel, mereka akan di gabungkan " "menjadi satu." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Sembunyikan kotak kueri" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Tampilkan kotak kueri" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1907,7 +1913,7 @@ msgstr "Tampilkan kotak kueri" msgid "Edit" msgstr "Ubah" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1919,42 +1925,42 @@ msgstr "Ubah" msgid "Delete" msgstr "Hapus" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d bukanlah nomor baris yang berlaku." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "jangan otomatis simpan kueri" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Variabel" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Pilih" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Pilih Kolom" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Cari daftar ini" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1963,15 +1969,15 @@ msgstr "" "Tidak ditemukan kolom pada daftar. Pastikan daftar kolom untuk database %s " "memiliki beberapa kolom yang tidak tertampilkan pada tabel saat ini." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Lebih banyak" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Anda yakin?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1979,51 +1985,51 @@ msgstr "" "Tindakan ini mungkin mengubah beberapa definisi kolom.
Anda yakin " "ingin melanjutkan?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Lanjutkan" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Tambahkan kunci primer" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Kunci primer telah ditambahkan." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Tunggu sebentar yach…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Langkah pertama normalisasi selesai untuk tabel '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Langkah terakhir" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Langkah kedua normalisasi (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Selesai" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Konfirmasi dependensi parsial" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Dependensi yang dipilih adalah:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2031,19 +2037,19 @@ msgstr "" "Catatan: a, b -> d, f menyiratkan bahwa nilai gabungan antara kolom a dan b " "dapat menentukan nilai dari kolom d dan kolom f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Tidak ada dependensi parsial yang dipilih!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Tunjukkan dependensi parsial yang ada pada data di dalam tabel" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Sembunykan daftar dependensi parsial" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2051,170 +2057,171 @@ msgstr "" "Santai! Mungkin diperlukan beberapa detik tergantung pada ukuran data dan " "jumlah kolom tabel." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Langkah" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Tindakan berikut akan dilakukan:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "DROP kolom %s dari tabel %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Buat tabel" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Tahap ketiga normalisasi (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Konfirmasi dependensi transitif" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Dependensi yang dipilih adalah sebagai berikut:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Dependensi belum dipilih!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Simpan" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Sembunyikan kriteria pencarian" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Jarak pencarian" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Jumlah kolom maksimal:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Jumlah kolom minimal:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Nilai minimal:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Nilai maksimum:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Sembunyikan kriteria pencarian dan penggantian" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Tampilkan kriteria pencarian dan penggantian" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Setiap titik mewakili sebaris data." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Melayang di atas titik akan menunjukkan labelnya." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Untuk memperbesar, pilih bagian dari plot dengan mouse." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Klik link reset Zoom untuk kembali ke keadaan semula." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Klik titik data untuk melihat dan mungkin mengedit baris data." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Plot dapat diubah ukurannya dengan menyeretnya di sepanjang sudut kanan " "bawah." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Pilih dua kolom" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Pilih dua kolom yang berbeda" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Salin" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Titik" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Segmen garis" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkar Dalam" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Lingkar Luar:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Apakah anda yakin untuk menyalin kunci enskripsi?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Kunci Enskripsi" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2222,24 +2229,24 @@ msgstr "" "Sebagai indikasi telah ada perubaha di halaman ini; konfirmasi akan " "ditampilkan untuk mengabaikan perubahan" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Harap pilih kunci primer(primary key) atau kunci unik(unique key)!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Pilih kolom untuk ditampilkan" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2247,79 +2254,79 @@ msgstr "" "Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda " "tidak menyimpannya. Apakah Anda ingin melanjutkan?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Nama halaman" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Simpan halaman" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "Pilih halaman" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Buka halaman" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Hapus halaman" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Belum ada nama" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Pilih halaman untuk lanjut" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Masukan halaman yang benar" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Apakah Anda ingin menyimpan perubahan ke halaman ini?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Halaman berhasil dihapus" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Ekspor skema relasi" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tambahkan opsi untuk kolom \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objek dibuat." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Kirim" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Tekan escape untuk membatalkan perubahan." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2327,15 +2334,15 @@ msgstr "" "Anda telah mengedit beberapa data dan belum di simpan. Apakah anda yakin " "akan meninggalkan halaman ini sebelum menyimpan data?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Seret untuk menyusun ulang." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "KIik untuk menyortir hasil dari kolom ini." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2345,26 +2352,26 @@ msgstr "" "DESC.
- Kontrol+Klik atau Alt+Click (Mac: Shift+Option+Click) untuk " "menghapus kolom dari ORDER BY clause" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Klik untuk menambahkan/menghapus tanda." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Klik dua kali untuk menyalin nama kolom." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Tampilkan semua" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2373,11 +2380,11 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Masukkan string yang benar. Karakter yang benar adalah 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2385,135 +2392,135 @@ msgstr "" "Apakah anda ingin melihat semua baris? Tabel ukuran besar bisa membuat " "peramban lambat." -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "String asli" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "Batal" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Batalkan" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Sukses" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Impor status" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Letakkan berkas disini" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Pilih database dulu" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Anda juga dapat mengedit sebagian nilai
dengan mengeklik langsung " "konten." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Anda juga dapat mengedit sebagian nilai
dengan mengeklik langsung " "konten." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Pergi ke tautan:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Salin nama kolom." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klik-kanan nama kolom untuk menyalinnya ke clipboard." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Buatkan kata sandi" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Buatkan" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Lainnya" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Tampilkan Panel" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Sembunyikan Panel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Tampilkan navigasi pohon item tersembunyi." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Link ke panel utama" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Unlink dari panel utama" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Untuk membatasi semua database di server, tekan Enter setelah kata kunci" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "Untuk memfilter %s di database, tekan Enter setelah kata kunci" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tabel" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "Tampilan" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "Prosedur" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "Kejadian" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "Fungsi" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Halaman yang diminta tidak ditemukan di riwayat, mungkin sudah kadaluarsa." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2523,32 +2530,32 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "Mutakhir" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Buat tampilan" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Kirim laporan kesalahan" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Kiri Laporan Kesalahan" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2556,26 +2563,26 @@ msgstr "" "Kesalhaan fatal JavaScript telah terdeteksi. Anda ingin mengirimkan laporan " "kesalahan?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Ubah Pengaturan Pelaporan" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Tampilkan Detail Laporan" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Ekspor anda tidak lengkap, karena batas waktu yang rendah di tingkat PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2585,64 +2592,64 @@ msgstr "" "beberapa bidang mungkin dibatalkan, karena konfigurasi max_input_vars dari " "PHP." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Kesalahan terdeteksi di server!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Silahkan lihat di bagian bawah jendela ini." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Abaikan" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Sesuai pengaturan Anda, mereka sedang diajukan saat ini, harap bersabar." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Jalankan kueri ini lagi?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Anda yakin akan menghapus penanda ini?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Kueri tereksekusi" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentar tabel" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2652,361 +2659,361 @@ msgstr "" "beberapa fitur mungkin tidak bekerja dengan sempurna. Di Safari, masalah ini " "terjadi karena \"Private Mode Browsing\" diaktifkan." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Sblm" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Brkt" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Hari ini" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Januari" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Februari" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Maret" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "April" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mei" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Juni" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Juli" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Agustus" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "September" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Oktober" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "November" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Des" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Senin" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Jumat" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Min" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Sn" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Sl" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Rb" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Km" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Jm" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Mingguan" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "Kalender-bulan-tahun" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "Kosong" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Jam" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Menit" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Detik" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Gunakan text field" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Masukan angka yang valid" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Masukan angka yang valid" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Masukan angka yang valid" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Masukan angka yang valid" -#: js/messages.php:785 +#: js/messages.php:786 #, fuzzy msgid "Please enter no more than {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy msgid "Please enter at least {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "Masukan angka yang valid" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "Masukan angka yang valid" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "Masukan angka yang valid" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3897,7 +3904,7 @@ msgstr "Indeks" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Tindakan" @@ -3908,8 +3915,8 @@ msgid "Keyname" msgstr "Nama kunci" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3941,9 +3948,9 @@ msgstr "Penyortiran" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Komentar" @@ -3958,14 +3965,14 @@ msgstr "Indeks %s telah dihapus." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Hapus" @@ -4077,7 +4084,7 @@ msgstr "Pelacakan" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4763,23 +4770,29 @@ msgstr "Sebuah koleksi poligon" msgid "A collection of geometry objects of any type" msgstr "Sebuah koleksi objek geometri dari jenis apa pun" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numerik" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Tanggal dan waktu" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "String" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Spasial" @@ -4937,7 +4950,7 @@ msgstr "Gunakan nilai ini" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Baris" @@ -5022,7 +5035,7 @@ msgstr "TIDAK" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nama" @@ -8339,7 +8352,8 @@ msgid "No data to display" msgstr "Tidak ada data" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8376,35 +8390,36 @@ msgid "The name '%s' is a MySQL reserved keyword." msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "Nama kolom '%s' adalah kata kunci pesanan MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Tidak ada kolom yang dipilih." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Sukses menghapus pengguna yang dipilih." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Galat kueri" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Tabel %1$s berhasil diubah." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Galat kueri" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ubah" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8415,20 +8430,20 @@ msgstr "Ubah" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spasial" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Teks penuh" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -9984,7 +9999,7 @@ msgstr "Baru" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "View" @@ -10520,32 +10535,32 @@ msgid "Delete the table (DROP)" msgstr "Hapus tabel (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analisis" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Periksa" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimalkan" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Bangun ulang" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Perbaiki" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10564,6 +10579,7 @@ msgid "Partition %s" msgstr "Partisi %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Hapus partisi" @@ -10787,7 +10803,7 @@ msgstr "Opsi dump data" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Dumping data untuk tabel" @@ -10811,21 +10827,21 @@ msgstr "Definisi" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Struktur dari tabel" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struktur untuk view" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 #, fuzzy msgid "Stand-in structure for view" @@ -10932,7 +10948,7 @@ msgid "Database:" msgstr "Basis data" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11055,7 +11071,7 @@ msgid "Data creation options" msgstr "Opsi pembuatan objek" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 #, fuzzy msgid "Truncate table before insert" msgstr "Truncate table sebelum insert" @@ -11147,7 +11163,7 @@ msgstr "Tampaknya database Anda menggunakan prosedur;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 #, fuzzy msgid "alias export may not work reliably in all cases." msgstr "ekspor alias mungkin tidak bekerja andal dalam semua kasus." @@ -11227,26 +11243,26 @@ msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "JENIS MIME UNTUK TABEL" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELASI UNTUK TABEL" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 #, fuzzy msgid "It appears your table uses triggers;" msgstr "Tampaknya meja Anda menggunakan pemicu;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktur untuk view" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Galat pembacaan data:" @@ -15780,7 +15796,7 @@ msgid "Pick from Central Columns" msgstr "Hapus kolom" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15796,92 +15812,92 @@ msgstr "pertama" msgid "after %s" msgstr "setelah %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "dipartisi" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Nilai untuk kolom %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Partisi %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "dipartisi" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "dipartisi" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Partisi %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Nilai" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "dipartisi" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Mesin" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Direktori awal data" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Direktori penyimpanan" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Baris yang cocok:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Browse" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Pencarian Tabel" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User group" msgid "Node group" @@ -16725,7 +16741,7 @@ msgid "at beginning of table" msgstr "Pada Awal Tabel" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16733,28 +16749,47 @@ msgstr "Partisi %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Indeks belum ditentukan!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "dipartisi" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "dipartisi" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Panjang baris" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Panjang baris" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "dipartisi" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Hapus partisi" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Tampilan edit" diff --git a/po/it.po b/po/it.po index c621e83f24..1ba2240d00 100644 --- a/po/it.po +++ b/po/it.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-29 07:52+0200\n" "Last-Translator: Stefano Martinelli \n" -"Language-Team: Italian " -"\n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,8 +167,8 @@ msgid "Comments" msgstr "Commenti" #: db_datadict.php:156 -#: libraries/controllers/TableStructureController.class.php:952 -#: libraries/controllers/TableStructureController.class.php:957 +#: libraries/controllers/TableStructureController.class.php:1183 +#: libraries/controllers/TableStructureController.class.php:1188 #: libraries/tracking.lib.php:922 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 @@ -176,7 +176,7 @@ msgstr "Commenti" msgid "Primary" msgstr "Primaria" -#: db_datadict.php:166 js/messages.php:317 libraries/Index.class.php:567 +#: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 libraries/mult_submits.lib.php:403 @@ -200,16 +200,16 @@ msgstr "Primaria" msgid "No" msgstr "No" -#: db_datadict.php:166 js/messages.php:444 libraries/Index.class.php:568 +#: db_datadict.php:166 js/messages.php:445 libraries/Index.class.php:568 #: libraries/Index.class.php:605 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/controllers/TableStructureController.class.php:541 -#: libraries/controllers/TableStructureController.class.php:1203 -#: libraries/controllers/TableStructureController.class.php:1212 -#: libraries/controllers/TableStructureController.class.php:1217 -#: libraries/controllers/TableStructureController.class.php:1222 -#: libraries/controllers/TableStructureController.class.php:1227 +#: libraries/controllers/TableStructureController.class.php:772 +#: libraries/controllers/TableStructureController.class.php:1434 +#: libraries/controllers/TableStructureController.class.php:1443 +#: libraries/controllers/TableStructureController.class.php:1448 +#: libraries/controllers/TableStructureController.class.php:1453 +#: libraries/controllers/TableStructureController.class.php:1458 #: libraries/mult_submits.inc.php:82 libraries/mult_submits.inc.php:195 #: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 #: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 @@ -251,7 +251,7 @@ msgstr "Non ci sono tabelle nel database." #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:119 -#: templates/database/structure/show_create.phtml:18 +#: templates/database/structure/show_create.phtml:19 msgid "Tables" msgstr "Tabelle" @@ -416,23 +416,23 @@ msgid "Point:" msgstr "Punto:" #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 -#: gis_data_editor.php:370 js/messages.php:433 +#: gis_data_editor.php:370 js/messages.php:434 msgid "X" msgstr "X" #: gis_data_editor.php:217 gis_data_editor.php:245 gis_data_editor.php:301 -#: gis_data_editor.php:376 js/messages.php:434 +#: gis_data_editor.php:376 js/messages.php:435 msgid "Y" msgstr "Y" #: gis_data_editor.php:239 gis_data_editor.php:295 gis_data_editor.php:368 -#: js/messages.php:436 +#: js/messages.php:437 #, php-format msgid "Point %d" msgstr "Punto %d" #: gis_data_editor.php:252 gis_data_editor.php:308 gis_data_editor.php:386 -#: js/messages.php:442 +#: js/messages.php:443 msgid "Add a point" msgstr "Aggiungi un punto" @@ -454,7 +454,7 @@ msgstr "Cerchio interno %d:" msgid "Add a linestring" msgstr "Aggiungi un linestring" -#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:443 +#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:444 msgid "Add an inner ring" msgstr "Aggiunge una cerchia interna" @@ -471,7 +471,7 @@ msgstr "Aggiungi un poligono" msgid "Add geometry" msgstr "Aggiungi una geometria" -#: gis_data_editor.php:409 js/messages.php:292 +#: gis_data_editor.php:409 js/messages.php:293 #: libraries/DbSearch.class.php:464 libraries/DisplayResults.class.php:1799 #: libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:166 @@ -526,7 +526,7 @@ msgstr "" msgid "Succeeded" msgstr "Riuscito" -#: import.php:58 js/messages.php:501 +#: import.php:58 js/messages.php:502 msgid "Failed" msgstr "Fallito" @@ -627,7 +627,7 @@ msgid "Could not load the progress of the import." msgstr "" "Non è stato possibile caricare la progressione del processo di importazione." -#: import_status.php:112 js/messages.php:378 libraries/Util.class.php:780 +#: import_status.php:112 js/messages.php:379 libraries/Util.class.php:780 #: libraries/export.lib.php:518 #: libraries/plugins/schema/Export_Relation_Schema.class.php:298 #: user_password.php:253 @@ -653,7 +653,7 @@ msgstr "" msgid "General settings" msgstr "Impostazioni generali" -#: index.php:191 js/messages.php:525 +#: index.php:191 js/messages.php:526 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:247 msgid "Change password" @@ -963,7 +963,13 @@ msgstr "" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "Sei sicuro di voler TRONCARE la partizione selezionata?" -#: js/messages.php:67 +#: js/messages.php:66 +#, fuzzy +#| msgid "Do you really want to TRUNCATE the selected partition(s)?" +msgid "Do you really want to remove partitioning?" +msgstr "Sei sicuro di voler TRONCARE la partizione selezionata?" + +#: js/messages.php:68 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -977,15 +983,15 @@ msgstr "" "corretta del carattere; in questo caso suggeriamo di tornare alla vecchia " "collazione e di far riferimento alla pagina dei suggeimenti " -#: js/messages.php:73 +#: js/messages.php:74 msgid "Garbled Data" msgstr "Dati Confusi" -#: js/messages.php:75 +#: js/messages.php:76 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "Sei sicuro di voler cambiare la collazione e convertire i dati?" -#: js/messages.php:77 +#: js/messages.php:78 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -1002,7 +1008,7 @@ msgstr "" "editing dei campi (il Link \"Modifica\") sulla pagina di struttura della " "tabella. " -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1010,161 +1016,161 @@ msgstr "" "Sei sicuro di voler cambiare tutte le collation dei campi collazione e " "convertire i dati?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Salva & chiudi" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Riavvia" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Reimposta tutto" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Valore mancante nel form!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Seleziona almeno una opzione!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Si prega di inserire un numero valido!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Inserire una lunghezza valida!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Aggiungi indice" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Modifica indice" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Aggiungi %s campo/i all'indice" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Crea indice a colonna singola" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Crea indice composito" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Composto da:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Selezionare il campo/i per l'indice." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Devi aggiungere almeno un campo." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Anteprima SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simula query" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Righe coinvolte:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "Query SQL:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Valori per l'asse Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Il nome di host è vuoto!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Il nome utente è vuoto!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "La password è vuota!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Rimozione Utenti Selezionati" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Chiudi" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Il template è stato creato." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Il template è stato caricato." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Il template è stato aggiornato." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Il template è stato eliminato." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Connessioni / Processi" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Configurazione del monitor locale incompatibile!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1177,155 +1183,155 @@ msgstr "" "funzionino. Sei pregato di ripristinare queste impostazioni ai valori " "iniziali nel menù Settings." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Efficienza della cache delle query" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Utilizzo della cache delle query" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Cache delle query utilizzata" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Utilizzo della CPU di sistema" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Memoria" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Swap" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Carico medio" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Memoria totale" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Memoria cached" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Memoria buffer" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Memoria libera" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Memoria utilizzata" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Swap totale" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Swap in cache" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Swap utilizzata" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Swap libera" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Byte inviati" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Byte ricevuti" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Connessioni" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Processi" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabella/e" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Domande" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Traffico" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Impostazioni" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Aggiungi diagramma alla griglia" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Aggiungi almeno una variabile alla serie!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1337,47 +1343,47 @@ msgstr "Aggiungi almeno una variabile alla serie!" msgid "None" msgstr "Nessuno" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Avvia il monitoraggio" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Arresta il monitoraggio" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Avvia auto-refresh" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Blocca l'auto-refresh" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log e slow_query_log sono abilitati." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log è abilitato." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log è abilitato." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log e general_log sono disabilitati." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output non è impostato su TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output è impostato su TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1388,12 +1394,12 @@ msgstr "" "più di %d secondi. É consigliato di impostare long_query_time a 0-2 seconds, " "a secondi del tipo di sistema." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time é impostato a %d secondi." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1402,30 +1408,30 @@ msgstr "" "valori predefiniti durante il riavvio del server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Imposta log_output a %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Abilita %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Disabilita %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Imposta long_query_time a %d secondi." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1433,59 +1439,59 @@ msgstr "" "Non puoi cambiare i valori di queste variabili. Prega effettua il login come " "root o contatta l'amministratore del database." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Modifica impostazioni" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Impostazioni attuali" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Titolo del grafico" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Differenziali" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Diviso per %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Unità" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Dallo slow log" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Dal log generale" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "Il nome del database non è noto per questa query nei log del server." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analisi dei log in corso" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" "L'analisi e il caricamento dei log in corso. Questa operazione potrebbe " "richiedere del tempo." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Annulla la richiesta" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1495,7 +1501,7 @@ msgstr "" "raggruppamento è fatto in base al testo che costituisce la query SQL, quindi " "altri attributi, come lo start time, potrebbero essere diversi." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1505,33 +1511,33 @@ msgstr "" "queste query effettuate sulla stessa tabella verranno raggruppate, ignorando " "i dati inseriti." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Dati di log caricati. Query eseguite in questo intervallo di tempo:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Vai alla tabella di Log" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Nessun dato trovato" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Il log é stato analizzato, ma nessun dato è stato trovato per questo " "intervallo di tempo." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analisi in corso…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Spiega l'output" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1539,7 +1545,7 @@ msgstr "Spiega l'output" msgid "Status" msgstr "Stato" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1549,58 +1555,58 @@ msgstr "Stato" msgid "Time" msgstr "Tempo" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Tempo totale:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Risultati del profiling" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabella" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Grafico" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Opzioni di filtro per il log delle tabelle" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtra" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtra query per parola/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Raggruppa query ignorando dati variabili nelle condizioni del WHERE" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Somma delle righe raggruppate:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Totale:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Caricamento dei log in corso" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "L'aggiornamento del monitor è fallito" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1610,28 +1616,28 @@ msgstr "" "invalida. Potrebbe essere accaduto a causa del termine della validità della " "tua sessione. Prova a ricaricare la pagina reinserendo i tuoi dati di login." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Ricarica la pagina" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Righe coinvolte:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "L'analisi del file di configurazione é fallita. Non sembra essere codice " "JSON valido." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Impossibile creare la tabella dei grafici con la configurazione importata. " "Ripristino alle impostazioni predefinite in corso…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1641,59 +1647,59 @@ msgstr "" msgid "Import" msgstr "Importa" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importa la configurazione del monitor" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Seleziona il file da importare." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Sul server non è disponibile nessun file da importare!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analizza la query" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Advisor" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Possibili problemi di prestazioni" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problema" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Avviso" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Dettagli della regola" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Giustificazione" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Variabile / formula utilizzata" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Prova" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Formatto SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1704,59 +1710,59 @@ msgstr "Formatto SQL…" msgid "Cancel" msgstr "Annulla" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Impostazioni pagina" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Applica" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Caricamento…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Richiesta interrotta!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Elaborazione richiesta" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Richiesta fallita!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Errore nell'elaborazione della richiesta" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Codice errore: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Messaggio errore: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Nessun database selezionato." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Eliminazione campo" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Aggiungo chiave primaria" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1766,57 +1772,57 @@ msgstr "Aggiungo chiave primaria" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Clicca per chiudere questa notifica" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Rinomino database" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Copio il database" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Cambio il charset" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Abilita i controlli sulle chiavi esterne" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Il conteggio delle righe reali è fallito." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Ricerca in corso" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Nascondi i risultati della ricerca" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Mostra i risultati della ricerca" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Navigazione" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Cancellazione" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "La definizione delle funzioni memorizzate deve contenere un istruzione " "RETURN!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1833,44 +1839,44 @@ msgstr "" msgid "Export" msgstr "Esporta" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "Editor di ENUM/SET" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Valori per il campo %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Valori per un nuovo campo" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Inserisci i valori in campi separati." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Aggiungi %d valore/i" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Nota: Se il file contiene piú di una tabella, i dati saranno combinati in un " "unica tabella." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Nascondi riquadro query SQL" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Mostra riquadro query SQL" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1884,7 +1890,7 @@ msgstr "Mostra riquadro query SQL" msgid "Edit" msgstr "Modifica" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1896,41 +1902,41 @@ msgstr "Modifica" msgid "Delete" msgstr "Elimina" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d non è un numero valido di righe." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Nessuna query auto-memorizzata" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variabile %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Seleziona" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Selettore colonne" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Cerca nella lista" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1939,15 +1945,15 @@ msgstr "" "Nessuna colonna nella lista centrale. Assicurati che la lista centrale per " "il database %s abbia colonne non presenti nella tabella corrente." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Vedi altri" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Sei sicuro?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1955,51 +1961,51 @@ msgstr "" "Questa azione potrebbe cambiare la definizione di alcune colonne.
Vuoi " "continuare?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Continua" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Aggiungi chiave primaria" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Chiave primaria aggiunta." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Alla fase successiva…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "La prima fase di normalizzazione per la tabella '%s' è completa." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Fase terminata" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Seconda fase di normalizzazione (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Fatto" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Conferma dipendenze parziali" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Le dipendenze parziali selezionate sono come segue:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2007,20 +2013,20 @@ msgstr "" "Nota: a, b -> d, f implica che i valori delle colonne a e b combinati " "possono determinare i valori delle colonne d ed f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Nessuna dipendenza parziale selezionata!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Mostrami le possibili dipendenze parziali basandoti sui dati nella tabella" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Nascondi la lista delle dipendenze parziali" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2028,169 +2034,170 @@ msgstr "" "Stai pronto! Potrebbero volerci alcuni secondi, in base alla quantità di " "dati e al numero di colonne della tabella." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Fase" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Verranno eseguite le seguenti azioni:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "ELIMINA le colonne %s dalla tabella %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Crea la tabella seguente" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Terzo livello di normalizzazione (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Conferma le dipendenze transitive" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Le dipendenze selezionate sono come segue:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Nessuna dipendenza selezionata!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salva" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Nascondi criteri di ricerca" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Ricerca nell'intervallo" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Numero massimo dei campi:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Numero minimo dei campi:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Valore minimo:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Valore massimo:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Nascondi i criteri di trova e sostituisci" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Mostra criteri di ricerca e sostituzione" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Ogni punto rappresenta una riga dei dati." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Passando il mouse su un punto mostrerà la sua etichetta." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Per effettuare lo zoom, scegliere una sezione del plot con il mouse." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Fai clic sul bottone \"Ripristina zoom\" per tornare allo stato originale." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Clicca su un punto nel piano per visualizzare ed eventualmente modificare la " "riga di dati." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Il piano può essere ridimensionato trascinandolo dall'angolo in basso a " "destra." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Seleziona due campi" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Seleziona due campi diversi" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Copia" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punto" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Stringa su più linee" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Poligono" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometria" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Anello Interno" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Anello esterno" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Vuoi copiare la chiave di criptazione?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Chiave di criptazione" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2198,24 +2205,24 @@ msgstr "" "Indica che hai modificato questa pagina; ti verrà chiesta una conferma prima " "di abbandonare le modifiche" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Seleziona la chiave primaria o una chiave univoca!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Scegli il campo da mostrare" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2223,77 +2230,77 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Nome della pagina" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salva pagina" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Salva pagina come" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Apri pagina" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Cancella pagina" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Senza titolo" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Scegli una pagina per continuare" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Inserisci un nome di pagina valido" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Vuoi salvare le modifiche apportate alla pagina corrente?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Pagina eliminata con sucesso" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Esporta schema relazionale" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Aggiungi un'opzione al campo \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d oggetto/i creato/i." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Invia" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Premi Esc per annullare la modifica." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2301,15 +2308,15 @@ msgstr "" "Hai modificato dei dati e non hai salvato. Sei sicuro di voler navigare via " "da questa pagina senza salvare i dati?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Trascina per riordinare." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Clicca per ordinare i risultati secondo questa colonna." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2319,28 +2326,28 @@ msgstr "" "alternare ASC/DESC.
- Ctrl+Click o Alt+Click (Mac: Shift+Option+Click) " "per rimuovere la colonna dalla clausola ORDER BY" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Clicca per selezionare/deselezionare." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Doppio click per copiare il nome della colonna." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Clicca sulla freccia
per cambiare lo stato di visualizzazzione dei " "campi." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Mostra tutti" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2349,13 +2356,13 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Inserire una stringa esadecimale valida. I caratteri consentiti sono 0-9, A-" "F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2363,130 +2370,130 @@ msgstr "" "Vuoi davvero vedere tutte le righe? Con una tabella di grandi dimensioni, " "questa operazione potrebbe mandare il browser in crash." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Lunghezza originale" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "Annulla" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Fallito" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Riuscito" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Rilascia i file qui" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Prima seleziona un database" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "È possibile modificare la maggior parte dei campi
cliccando due volte " "direttamente su essi." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" "È possibile modificare la maggior parte dei valori
cliccando " "direttamente su essi." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Vai al link:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Copia il nome del campo." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Click destro sul nome della colonna per copiarlo negli appunti." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Genera" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Più" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "Mostra pannello" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "Nascondi pannello" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Mostra elementi nascosti dell'albero di navigazione." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Collega al pannello principale" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Scollega dal pannello principale" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" "Per filtrare tutti i database sul server, premi INVIO dopo un termine di " "ricerca" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" "Per filtrare tutti i %s nel database, premi INVIO dopo un termine di ricerca" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "tabelle" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "viste" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "procedure" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "eventi" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funzioni" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "La pagina richiesta non è stata trovata nella cronologia, potrebbe essere " "scaduta." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2496,28 +2503,28 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "aggiornata" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "Invia rapporto di errore" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "Invia segnalazione di errore" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2525,15 +2532,15 @@ msgstr "" "Un errore fatale di JavaScript si è verificato. Vuoi inviare una " "segnalazione?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "Modifica le impostazioni della segnalazione" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "Mostra i dettagli della segnalazione" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2541,7 +2548,7 @@ msgstr "" "L'esportazione non è stata completata, a causa di un limite di tempo troppo " "basso nell'esecuzione di script PHP!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2551,62 +2558,62 @@ msgstr "" "alcuni campi saranno ignorati, a causa della configuazione max_input_vars di " "PHP." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Sono stati rilevati alcuni errori sul server!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Guarda in fondo a questa finestra." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignora Tutto" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Secondo le impostazioni, sono in corso di presentazione, si prega di " "attendere." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Eseguire di nuovo questa query?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Sei sicuro di voler eliminare questo bookmark?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" "Ci sono stati alcuni errori durante il recupero delle informazioni di debug " "SQL." -#: js/messages.php:601 +#: js/messages.php:602 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s query eseguite %s volte in %s secondi." -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "%s argomento(i) passati" -#: js/messages.php:603 +#: js/messages.php:604 msgid "Show arguments" msgstr "Mostra argomenti" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "Nascondi argomenti" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "Tempo utilizzato:" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2617,331 +2624,331 @@ msgstr "" "essere disponibili. Nel browser Safari questo problema di solito è causato " "dalla modalità \"Navigazione Privata\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Prec" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Oggi" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Gennaio" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Febbraio" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Marzo" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Aprile" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Maggio" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Giugno" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Luglio" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Agosto" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Setttembre" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Ottobre" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Novembre" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dic" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Sett" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "Nessuno" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Ora" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minuto" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Secondo" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "Questo campo è obbligatorio" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Si prega di correggere questo campo" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Per favore inserisci un indirizzo email valido" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Si prega di inserire un URL valido" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Si prega di inserire una data valida" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Si prega di inserire una data valida ( ISO )" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Si prega di inserire un numero valido" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Si prega di inserire un numero di carta di credito valido" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Si prega di inserire solo cifre" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Si prega di inserire lo stesso valore di nuovo" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "Si prega di inserire non più di {0} caratteri" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Si prega di inserire almeno {0} caratteri" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "Per favore inserisci un valore tra {0} e {1} caratteri" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Immettere un valore compreso tra {0} e {1}" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "Per favore inserisci un valore minore o uguale a {0}" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "Immettere un valore maggiore o uguale a {0}" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "Si prega di inserire una data o un'ora valida" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "Si prega di inserire un input HEX valido" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3802,7 +3809,7 @@ msgstr "Indici" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Azione" @@ -3813,8 +3820,8 @@ msgid "Keyname" msgstr "Chiave" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3846,9 +3853,9 @@ msgstr "Codifica caratteri" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Commenti" @@ -3863,14 +3870,14 @@ msgstr "L'indice %s è stato eliminato." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Elimina" @@ -3984,7 +3991,7 @@ msgstr "Monitoraggio" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4676,23 +4683,29 @@ msgstr "Una collezione di poligoni" msgid "A collection of geometry objects of any type" msgstr "Una collezione di oggetti geometrici di qualsiasi tipo" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numerico" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Data e ora" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Stringa" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Spaziale" @@ -4840,7 +4853,7 @@ msgstr "Usa questo valore" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Righe" @@ -4922,7 +4935,7 @@ msgstr "NO" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nome" @@ -8043,7 +8056,8 @@ msgid "No data to display" msgstr "Nessun dato da visualizzare" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8077,15 +8091,21 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "Il nome '%s' è un termine riservato MySQL." msgstr[1] "I nomi '%s' sono termini riservati MySQL." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Nessuna colonna selezionata." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "I campi sono stati spostati con successo." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Errore nella query" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." @@ -8093,18 +8113,13 @@ msgstr "" "La tabella %1$s è già stata modificata con successo. I privilegi sono stati " "adattati." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Errore nella query" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Modifica" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8115,20 +8130,20 @@ msgstr "Modifica" msgid "Index" msgstr "Indice" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "Spaziale" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Testo completo" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "Valori distinti" @@ -9553,7 +9568,7 @@ msgstr "Nuovo" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Viste" @@ -10043,32 +10058,32 @@ msgid "Delete the table (DROP)" msgstr "Elimina la tabella (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analizza" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Controlla" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Ottimizza" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Ricrea" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Ripara" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "Tronca" @@ -10086,6 +10101,7 @@ msgid "Partition %s" msgstr "Partizione %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Rimuove partizionamento" @@ -10301,7 +10317,7 @@ msgstr "Opzioni del dump dei dati" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Dump dei dati per la tabella" @@ -10325,21 +10341,21 @@ msgstr "Definizione" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Struttura della tabella" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struttura per la vista" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Struttura stand-in per le viste" @@ -10431,7 +10447,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "Dati:" @@ -10535,7 +10551,7 @@ msgid "Data creation options" msgstr "Opzioni di creazione dei dati" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "Svuota la tabella prima dell'inserimento" @@ -10619,7 +10635,7 @@ msgstr "Il tuo database sembra utilizzare le procedure;" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" "l'esportazione degli alias potrebbe non funzionare correttamente in tutti i " @@ -10686,24 +10702,24 @@ msgstr "AUTO_INCREMENT per le tabelle scaricate" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT per la tabella" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "Il tuo database sembra utilizzare i trigger;" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "Struttura per la vista %s esportata come una tabella" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Si è verificato un errore durante la lettura dei dati:" @@ -12399,7 +12415,6 @@ msgid "User group" msgstr "Gruppo utenti" #: libraries/server_privileges.lib.php:730 -#| msgid "Does not requires SSL-encrypted connections." msgid "Does not require SSL-encrypted connections." msgstr "Non richiede connessioni cifrate SSL." @@ -14889,7 +14904,7 @@ msgid "Pick from Central Columns" msgstr "Scegli dai Campi Centrali" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "Espressione" @@ -14903,64 +14918,64 @@ msgstr "primo" msgid "after %s" msgstr "dopo %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "Partizione da:" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "Lista di espressioni o di campi" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "Partizioni:" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "Sottopartizione da:" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "Sottopartizioni:" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "Partizione" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "Valori" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "Sottopartizione" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "Motore" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "Cartella dei dati" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "Cartella indice" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "Numero Max. di righe" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "Numero Min. di righe" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "Spazio tabella" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "Gruppo nodi" @@ -15685,26 +15700,45 @@ msgid "at beginning of table" msgstr "All'inizio della tabella" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "Partizioni" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Nessun indice definito!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "Partizionato da:" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "Sotto-partizionato da:" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "Lunghezza dati" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "Lunghezza indice" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition by:" +msgid "Partition table" +msgstr "Partizione da:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Rimuove partizionamento" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Modifica la vista" diff --git a/po/ja.po b/po/ja.po index 117a055b75..86a0ef5220 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-03-28 04:08+0200\n" "Last-Translator: Hiroshi Chiyokawa \n" "Language-Team: Japanese " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "保存して閉じる" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "リセット" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "全リセット" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "フォームに入力されていない値があります!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "オプションを一つ以上選択してください!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "正しい長さを入力してください!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "インデックスを追加する" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "インデックスを編集する" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "インデックスに %s 個のカラムを追加する" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "単一カラムのインデックスを作成" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "複雑なインデックスを作成" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "合成物:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "インデックスに使用するカラムを選択してください。" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "最低ひとつはカラムを追加してください。" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQLのプレビュー" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "行/クエリ" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "変更された行:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "実行した SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y 軸の値" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "ホスト名が空です!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "ユーザ名が空です!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "パスワードが空です!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "選択したユーザを削除する" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "閉じる" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "作成されたページ数。" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "プロファイルを更新しました。" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "行を削除しました" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "その他" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "接続/プロセス" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "ローカルのモニタ環境設定に互換性なし" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1187,167 +1193,167 @@ msgstr "" "せん。この環境設定ではおそらく機能させることはできないでしょう。設定項" "目よりモニタ環境設定をデフォルトに戻してください。" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "クエリキャッシュ効率" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "クエリキャッシュの使用状況" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "使用されているクエリキャッシュ" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "システム CPU の使用状況" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "システムメモリ" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "システムスワップ" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "平均負荷" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "総メモリ" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "キャッシュ割り当てメモリ" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "バッファ割り当てメモリ" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "空きメモリ" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "使用中メモリ" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "総スワップ領域" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "キャッシュ割り当てスワップ領域" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "使用中スワップ領域" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "空きスワップ領域" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "送信" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "受信" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "接続" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "プロセス" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "バイト" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d テーブル" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "問い合わせ" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "トラフィック" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "設定" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "モニタリンググラフを追加する" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "少なくとも1つの系列を追加してください" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1359,47 +1365,47 @@ msgstr "少なくとも1つの系列を追加してください" msgid "None" msgstr "なし" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "モニタ再開" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "モニタ一時中断" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log および slow_query_log は有効です。" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log は有効です。" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log は有効です。" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log および general_log は無効です。" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output はテーブルに設定されていません。" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output はテーブルに設定されています。" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1410,12 +1416,12 @@ msgstr "" "をログに記録します。お使いのシステムによっては、long_query_time を 0~2 秒に" "設定したほうがいいでしょう。" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time は %d 秒に設定されています。" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1424,31 +1430,31 @@ msgstr "" "されます。" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "log_output に %s を設定する" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "%s を有効にする" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "%s を無効にする" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "long_query_time を %d 秒に設定する" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1456,58 +1462,58 @@ msgstr "" "これらの変数を変更することはできません。root でログインするか、データベース管" "理者に連絡してください。" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "設定の変更" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "現在の設定" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "グラフの題名" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "差分値" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "除数 %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "単位" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "スロークエリログより" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "一般クエリログより" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "ログの解析中" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" "ログの解析および読み込みを行っています。少し時間がかかることがあります。" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "キャンセル" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1517,7 +1523,7 @@ msgstr "" "クエリをグループの基準として使用しています。そのため、開始時刻いったような属" "性は、他クエリでは異なる場合があります。" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1527,31 +1533,31 @@ msgstr "" "INSERT クエリは挿入されたデータ部は同一のようにみなされて、グループ化が行われ" "ます。" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "ログデータを読み込みました。この期間に行われたクエリは以下の通りです。" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "ログの表に移動する" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "データが存在しません" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "ログの解析を行いましたが、この期間のデータは見つかりませんでした。" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "解析しています…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "EXPLAIN の結果" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1559,7 +1565,7 @@ msgstr "EXPLAIN の結果" msgid "Status" msgstr "状態" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1569,59 +1575,59 @@ msgstr "状態" msgid "Time" msgstr "時間" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "合計時間:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "プロファイリングの結果" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "表" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "グラフ" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "ログの表のフィルタオプション" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "フィルタ" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "単語/正規表現でクエリを絞る:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "WHERE 節内のデータ部(文字列や数値など)は同一として扱いクエリをまとめる" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "グループ後の行数:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "合計:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "ログの読み込み" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "モニタの再描画に失敗しました" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1631,26 +1637,26 @@ msgstr "" "期限切れであるなら、これは正常な動作です。ページを再読み込みしてください。認" "証はやり直す必要があるかもしれません。" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "ページの再読み込み" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "変更された行:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "設定ファイルの構文解析に失敗しました。有効な JSON コードではないようです。" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "インポートした設定でのグラフの配置に失敗しました。設定をデフォルトに戻します…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1660,61 +1666,61 @@ msgstr "" msgid "Import" msgstr "インポート" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "モニタ環境設定のインポート" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "インポートするファイルを選択してください。" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "クエリを解析する" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "アドバイザ・システム" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "パフォーマンス的に検討が推奨される事象" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "事象" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "推奨設定" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "事象の詳細と判断理由" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "判断理由" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "判断値の算出方法" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "判断基準" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1725,73 +1731,73 @@ msgstr "" msgid "Cancel" msgstr "キャンセル" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "設定の変更" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "適用" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "読み込み中…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "リクエストを中止しました!!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "要求を処理しています" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "リクエストを中止しました!!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "要求処理中でのエラー" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "エラーコード:%s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "エラーテキスト:%s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "データベースが選択されていません。" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "カラムを削除しています" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "主キーを追加する" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1801,65 +1807,65 @@ msgstr "主キーを追加する" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "クリックすると、この通知を破棄します" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "データベースの名称を変更しています" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "データベースをコピーしています" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "文字セットを変更しています" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "外部キーのチェックを無効にする" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "ヘッダの取得に失敗しました。" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "検索しています" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "検索結果を隠す" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "検索結果を表示する" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "表示中" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "削除しています" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "ストアドファンクションの定義には、RETURN 文を含めなければなりません!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1876,46 +1882,46 @@ msgstr "ストアドファンクションの定義には、RETURN 文を含め msgid "Export" msgstr "エクスポート" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET エディタ" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "カラム %s に対しての値" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "新しいカラムに対しての値" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "個々の入力欄にそれぞれ値を入力してください" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "値 %d を追加する" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "注意:ファイルに複数のテーブルが含まれている場合、それらは1つに統合されま" "す。" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "クエリボックスを隠す" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "クエリボックスを表示" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1929,7 +1935,7 @@ msgstr "クエリボックスを表示" msgid "Edit" msgstr "編集" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1941,96 +1947,96 @@ msgstr "編集" msgid "Delete" msgstr "削除" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d は不正な行番号です。" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "変数" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "カラムが選択されていません。" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "データベース内検索" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "空きメモリ" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "phpMyAdmin に協力するには" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "主キーを追加する" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s に主キーを追加しました" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "追跡レポート" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2038,252 +2044,253 @@ msgstr "" msgid "End of step" msgstr "改行コード" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "決定" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "データベースが選択されていません。" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "次のクエリが実行されます:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "テーブルに特権を追加" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "データベースが選択されていません。" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "保存する" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "検索条件を隠す" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Table Search" msgid "Range search" msgstr "テーブル検索" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "カラム名: " -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "カラム名: " -#: js/messages.php:402 +#: js/messages.php:403 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "テーブルの最大数" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "テーブルの最大数" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "検索と置換の条件を隠す" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "検索と置換の条件を表示" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "プロット点は、それぞれの行のデータを表します。" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "プロット点にマウスカーソルを重ねると、そのラベルが表示されます。" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "拡大するには、マウスでグラフ内を範囲選択してください。" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "「Reset zoom」ボタンをクリックすることで元の状態に戻せます。" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "プロット点をクリックすることで、行のデータの閲覧と編集が可能です。" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "グラフの右下をドラッグすることで、大きさの調整が行えます。" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "カラムを 2 つ選択してください" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "異なるカラムを 2 つ選択してください" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "プロット点におけるデータ内容" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "無視" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "コピー" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "座標" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "線分" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "ポリゴン" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "幾何データ" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "内輪" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "外枠:" -#: js/messages.php:445 +#: js/messages.php:446 #, fuzzy #| msgid "Do you want to import remaining settings?" msgid "Do you want to copy encryption key?" msgstr "暗号化キーをコピーしますか?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "主キーまたはユニークキーを選択してください!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2291,94 +2298,94 @@ msgstr "" "レイアウトの変更を保存していません。保存しないと失われてしまいます。このまま" "続行しますか?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "ページ名" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "ページを選択してください" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "ページを選択してください" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "フリーページ数" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "ページを選択してください" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "単位" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "編集するページを選択してください" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "有効なポート番号ではありません" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "リレーショナルスキーマをエクスポートする" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "修正を保存しました" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "カラム「\"%s\"」に対するオプションを追加する。" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "%1$d 行変更しました。" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "実行する" -#: js/messages.php:482 +#: js/messages.php:483 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "ESC キーで編集キャンセル" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2386,49 +2393,49 @@ msgstr "" "データの一部を変更しましたが保存していません。データを保存せずにこのページか" "ら移動してもよろしいですか?" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "ドラッグでカラムの入れ替え" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "クリックでカラムを反転/解除" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ダブルクリックでカラム名をコピー。" -#: js/messages.php:490 +#: js/messages.php:491 #, fuzzy #| msgid "Click the drop-down arrow
to toggle column's visibility" msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "クリックでカラムの表示/非表示
ができるドロップダウンを表示" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "すべて表示" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2437,159 +2444,159 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "元の位置" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "キャンセル" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "中断" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "インポートのデフォルト" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "ログファイルの閾値" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "最初にデータベースを選択してください" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "ほとんどの値は、直接ダブルクリック
することでも、編集できます。" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "ほとんどの値は、直接クリック
することでも、編集できます。" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "リンク先へ移動する:" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "カラム名のコピー。" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "右クリックでカラム名をクリップボードにコピーしてください。" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "生成する" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "その他" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "パネルを表示" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "パネルを隠す" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "左のフレーム内にロゴを表示します。" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "テーブル" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Views" msgid "views" msgstr "ビュー" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "プロシージャ" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "event" msgid "events" msgstr "イベント" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "関数" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "リクエストされたページが履歴にありません。おそらく有効期限切れです。" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2599,484 +2606,484 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "最新版" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "ビューを作成する" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "サーバのポート" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "エラー報告を送信" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "JavaScript の致命的なエラーが発生しました。エラー報告を送信しますか?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "報告の設定の変更" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "報告の詳細を表示" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "全て無視" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "このクエリをもう一度実行しますか?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "このブックマークを本当に削除しますか?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "実行されたクエリ" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "テーブルのコメント" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "検索結果を隠す" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "前月" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "翌月" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "今日" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "1 月" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "2 月" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "3 月" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "4 月" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "5 月" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "6 月" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "7 月" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "8 月" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "9 月" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "10 月" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "11 月" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "12 月" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "日" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "月" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "火" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "水" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "木" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "金" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "時" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "分" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "秒" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "テキスト入力項目の値を利用する" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "有効なポート番号ではありません" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "有効なポート番号ではありません" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "有効なポート番号ではありません" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "正しい長さを入力してください!" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "有効なポート番号ではありません" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "有効なポート番号ではありません" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "有効なポート番号ではありません" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "正しい長さを入力してください!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "有効なポート番号ではありません" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "有効なポート番号ではありません" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "有効なポート番号を入力してください!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4052,7 +4059,7 @@ msgstr "インデックス" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "操作" @@ -4063,8 +4070,8 @@ msgid "Keyname" msgstr "キー名" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4096,9 +4103,9 @@ msgstr "照合順序" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "コメント" @@ -4113,14 +4120,14 @@ msgstr "インデックス %s を削除しました。" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "削除" @@ -4232,7 +4239,7 @@ msgstr "SQL コマンドの追跡" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4937,23 +4944,29 @@ msgstr "ポリゴンの集合" msgid "A collection of geometry objects of any type" msgstr "任意の型の幾何物体の集合" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "数値" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "日付・時刻" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "文字列" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "空間データ" @@ -5113,7 +5126,7 @@ msgstr "この値を利用する" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "行" @@ -5198,7 +5211,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "名前" @@ -8815,7 +8828,8 @@ msgid "No data to display" msgstr "データが存在しません" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8858,33 +8872,34 @@ msgid "The name '%s' is a MySQL reserved keyword." msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "カラムが選択されていません。" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "カラムは正常に移動されました。" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "クエリエラー" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "テーブル %1$s は正常に変更されました。" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "クエリエラー" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "変更" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8895,20 +8910,20 @@ msgstr "変更" msgid "Index" msgstr "インデックス" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "空間" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "全文" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "件数集計" @@ -10433,7 +10448,7 @@ msgstr "新規作成" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "ビュー" @@ -10902,32 +10917,32 @@ msgid "Delete the table (DROP)" msgstr "テーブルを削除する (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "分析" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "確認" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "最適化" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "再構築" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "修復" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10947,6 +10962,7 @@ msgid "Partition %s" msgstr "パーティション %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "パーティションを削除" @@ -11165,7 +11181,7 @@ msgstr "データのダンプオプション" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "テーブルのデータのダンプ" @@ -11189,21 +11205,21 @@ msgstr "定義" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "テーブルの構造" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "ビュー用の構造" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "ビュー用の代替構造" @@ -11309,7 +11325,7 @@ msgid "Database:" msgstr "データベース" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11420,7 +11436,7 @@ msgid "Data creation options" msgstr "生成オプション" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "挿入前にテーブルを空にする" @@ -11505,7 +11521,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11581,25 +11597,25 @@ msgstr "値がゼロのものに対して AUTO_INCREMENT を使用しない" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT 値を追加する" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "テーブルに含まれている MIME タイプ" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "テーブルのリレーション" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "ビュー用の構造" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "データ読み込みエラー:" @@ -15982,7 +15998,7 @@ msgid "Pick from Central Columns" msgstr "カラムの削除" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15998,92 +16014,92 @@ msgstr "最初へ" msgid "after %s" msgstr "%s の後へ" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "パーティション有り" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "カラム %s に対しての値" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "パーティション %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "パーティション有り" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "パーティション有り" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "パーティション %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "値" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "パーティション有り" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "エンジン" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "データのホームディレクトリ" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "保存ディレクトリ" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "変更された行:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "表示" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table Search" msgid "Table space" msgstr "テーブル検索" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -16905,7 +16921,7 @@ msgid "at beginning of table" msgstr "テーブルの先頭" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16913,28 +16929,47 @@ msgstr "パーティション %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "インデックスが定義されていません!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "パーティション有り" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "パーティション有り" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "行の長さ" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "行の長さ" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "パーティション有り" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "パーティションを削除" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "ビューを編集する" diff --git a/po/ka.po b/po/ka.po index 4bfe7e1b94..6558f3cd58 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-27 15:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "ფაილის სახის შენახვა" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "დაბრუნება" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "ყველას მონიშნვა" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "ერთი სიტყვა მაინც" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "ახალი ველის დამატება" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit mode" msgid "Edit index" msgstr "რედაქტირების რეჟიმი" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "%s ველის დამატება" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Create relation" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Create relation" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Fields enclosed by" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "%s ველის დამატება" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "მოთხოვნაში" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Startup" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL მოთხოვნა" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "მნიშვნელობა" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "ჰოსტის სახელის ველი ცარიელია!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "მომხმარებლის სახელის ველი ცარიელია!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "პაროლის ველი ცარიელია!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "პაროლებში შეუსაბამობაა!" -#: js/messages.php:125 +#: js/messages.php:126 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Remove selected users" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "Table %1$s has been created." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "პროფილი განახლდა." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "სტრიქონი წაიშალა" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "კავშირები" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1248,181 +1254,181 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Query cache" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Query cache" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Query cache" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "გამოყენება" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Log file count" msgid "Total memory" msgstr "Log file count" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Buffer Pool" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "სულ" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "ადგილის გამოყენება" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Free pages" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "მიღებულია" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "კავშირები" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "პროცესები" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s table(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "სპარსული" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "ტრაფიკი" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "General relation features" -#: js/messages.php:186 +#: js/messages.php:187 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Snap to grid" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1434,47 +1440,47 @@ msgstr "" msgid "None" msgstr "არაა" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1482,157 +1488,157 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "ფაილის სახის შენახვა" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "ჩართულია" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "გათიშვა" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "Other core settings" msgid "Change settings" msgstr "Other core settings" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "Other core settings" msgid "Current settings" msgstr "Other core settings" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Report title" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy #| msgid "Load" msgid "Analysing logs" msgstr "ჩატვირთვა" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "მოთხოვნების წაკითხვა" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 #, fuzzy #| msgid "Analyze" msgid "Analyzing…" msgstr "Analyze" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL-ის ახსნა" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1640,7 +1646,7 @@ msgstr "SQL-ის ახსნა" msgid "Status" msgstr "სტატუსი" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1650,100 +1656,100 @@ msgstr "სტატუსი" msgid "Time" msgstr "დრო" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "სულ" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "Profiling" msgid "Profiling results" msgstr "Profiling" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "ცხრილი" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy msgid "Chart" msgstr "სიმბოლოთა ნაკრებები" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "ცხრილების ჩვენების პარამეტრები" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 #, fuzzy msgid "Filter" msgstr "ფაილები" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of inserted rows" msgid "Sum of grouped rows:" msgstr "ჩასმული სტრიქონების რაოდენობა" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "სულ" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy #| msgid "Load" msgid "Loading logs" msgstr "ჩატვირთვა" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "გადატვირთვა" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1753,69 +1759,69 @@ msgstr "" msgid "Import" msgstr "შემოტანა" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Could not load default configuration from: \"%1$s\"" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "მოთხოვნის განახლება" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "დოკუმენტაცია" -#: js/messages.php:283 +#: js/messages.php:284 #, fuzzy #| msgid "Details…" msgid "Rule details" msgstr "დეტალები…" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Customization" msgid "Justification" msgstr "Customization" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1826,73 +1832,73 @@ msgstr "" msgid "Cancel" msgstr "გაუქმება" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Other core settings" msgid "Page-related settings" msgstr "Other core settings" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy #| msgid "Load" msgid "Loading…" msgstr "ჩატვირთვა" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "პროცესები" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Query cache" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "პროცესები" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "სვეტში:" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "%s ველის დამატება" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1902,74 +1908,74 @@ msgstr "%s ველის დამატება" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Rename database to" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Copy database to" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "სიმბოლოთა ნაკრები" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Disable foreign key checks" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy msgid "Failed to get real row count." msgstr "Failed to write file to disk." -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "ძებნა" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy #| msgid "SQL Query box" msgid "Hide search results" msgstr "SQL Query box" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy #| msgid "SQL Query box" msgid "Show search results" msgstr "SQL Query box" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "არჩევა" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-ის წაშლა" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1986,47 +1992,47 @@ msgstr "" msgid "Export" msgstr "ექსპორტი" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format #| msgid "Add a new server" msgid "Add %d value(s)" msgstr "ახალი სერვერის დამატება" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy #| msgid "SQL Query box" msgid "Hide query box" msgstr "SQL Query box" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy #| msgid "SQL Query box" msgid "Show query box" msgstr "SQL Query box" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -2040,7 +2046,7 @@ msgstr "SQL Query box" msgid "Edit" msgstr "რედაქტირება" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2052,92 +2058,92 @@ msgstr "რედაქტირება" msgid "Delete" msgstr "წაშლა" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "ცვლადი" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Column selector" msgstr "სვეტების სახელები" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "მონაცემთა ბაზაში ძებნა" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "ატრიბუტები" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "შეცვლა" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2145,284 +2151,285 @@ msgstr "" msgid "End of step" msgstr "სტრიქონის დასასრული" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "შენახვა" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy #| msgid "SQL Query box" msgid "Hide search criteria" msgstr "SQL Query box" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy #| msgid "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "ძებნა" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "სვეტების სახელები" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "სვეტების სახელები" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "SQL Query box" msgid "Hide find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "SQL Query box" msgid "Show find and replace criteria" msgstr "SQL Query box" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "ველის სვეტების დამატება/წაშლა" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Data pointer size" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "ასლი" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Lines terminated by" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Add an inner ring" msgid "Inner ring" msgstr "შიდა ქსელის დამატება" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Lines terminated by" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "გვერდის ნომერი:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "ყველას მონიშნვა" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "ყველას მონიშნვა" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2430,275 +2437,275 @@ msgstr "ყველას მონიშნვა" msgid "Open page" msgstr "pages" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "ყველას მონიშნვა" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relational schema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Values for column %s" msgid "Add an option for column \"%s\"." msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: js/messages.php:478 +#: js/messages.php:479 #, fuzzy, php-format #| msgid "%1$d row(s) affected." msgid "%d object(s) created." msgstr "%1$d row(s) affected." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Submit" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "საწყისი მდებარეობა" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "გაუქმება" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "შეწყვეტილია" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "ფაილების შემოტანა" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "ცხრილების არჩევა" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "ახალი ველის დამატება" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize export options" msgid "Link with main panel" msgstr "Customize export options" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize export options" msgid "Unlink from main panel" msgstr "Customize export options" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "ცხრილები" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "ხედო" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "პროცედურები" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "მოვლენა" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "ფუნქციები" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2706,141 +2713,141 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Create relation" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "სერვერის პორტი" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "სერვერის პორტი" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Other core settings" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Report title" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "იგნორირება" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy msgid "Execute this query again?" msgstr "SQL მოთხოვნები" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "ცხრილის კომენტარები" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL Query box" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "წინა" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2848,96 +2855,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "მაი" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2945,78 +2952,78 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "დეკ" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3024,86 +3031,86 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3112,137 +3119,137 @@ msgstr "ვიკი" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "არაა" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "წამში" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "გამოიყენე ტექსტური ველი" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4228,7 +4235,7 @@ msgstr "ინდექსები" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "მოქმედება" @@ -4239,8 +4246,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4272,9 +4279,9 @@ msgstr "კოლაცია" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "კომენტარი" @@ -4289,14 +4296,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "" @@ -4406,7 +4413,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -5073,19 +5080,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "ახალი ინდექსის შექმნა" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5093,7 +5106,7 @@ msgctxt "string types" msgid "String" msgstr "Lines terminated by" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Log file count" msgctxt "spatial types" @@ -5260,7 +5273,7 @@ msgstr "გამოიყენეთ ეს ველი" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "სტრიქონები" @@ -5349,7 +5362,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "სახელი" @@ -8653,7 +8666,8 @@ msgid "No data to display" msgstr "მონაცემთა ბაზები არაა" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8694,37 +8708,38 @@ msgid "The name '%s' is a MySQL reserved keyword." msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "%s databases have been dropped successfully." msgid "The columns have been moved successfully." msgstr "%s databases have been dropped successfully." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %s has been dropped." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Table %s has been dropped" - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Ignore errors" msgid "Query error" msgstr "შეცდომების იგნორირება" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %s has been dropped." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Table %s has been dropped" + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "შეცვლა" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8735,20 +8750,20 @@ msgstr "შეცვლა" msgid "Index" msgstr "ინდექსი" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -10236,7 +10251,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10705,32 +10720,32 @@ msgid "Delete the table (DROP)" msgstr "მაგიდების წაშლა (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "შემოწმება" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "ოპტიმიზება" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "აღდგენა" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10750,6 +10765,7 @@ msgid "Partition %s" msgstr "დანაყოფი %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10978,7 +10994,7 @@ msgstr "მონაცემთა ბაზის ჩვენების პ #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -11004,21 +11020,21 @@ msgstr "აღწერილობა" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "სტრუქტურა ხედისათვის" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -11136,7 +11152,7 @@ msgid "Database:" msgstr "მონაცემთა ბაზა" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11251,7 +11267,7 @@ msgid "Data creation options" msgstr "გარდაქმნის პარამეტრები" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11321,7 +11337,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11400,25 +11416,25 @@ msgstr "Add AUTO_INCREMENT value" msgid "AUTO_INCREMENT for table" msgstr "Add AUTO_INCREMENT value" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPES FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELATIONS FOR TABLE" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "სტრუქტურა ხედისათვის" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15683,7 +15699,7 @@ msgid "Pick from Central Columns" msgstr "Rename database to" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15700,92 +15716,92 @@ msgstr "" msgid "after %s" msgstr "After %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "დაყოფილი" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "ველების რაოდენობა სვეტებისათვის %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "დანაყოფი %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "დაყოფილი" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "დაყოფილი" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "დანაყოფი %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "მნიშვნელობა" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "დაყოფილი" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "ძრავები" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "მონაცემების ლექსიკონი" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "დირექტორიის შენახვა" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Start" msgid "Max rows" msgstr "Startup" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "არჩევა" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "ძებნა" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16667,7 +16683,7 @@ msgid "at beginning of table" msgstr "ცხრილის დასაწყისში" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16675,28 +16691,47 @@ msgstr "დანაყოფი %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "ინდექსი არაა განსაზღვრული!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "დაყოფილი" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "დაყოფილი" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "სტრიქონის სიგრძე" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "სტრიქონის სიგრძე" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "დაყოფილი" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "partitioned" +msgid "Edit partitioning" +msgstr "დაყოფილი" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/kk.po b/po/kk.po index eccc1fb985..d0b910ea78 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-03-31 14:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Барлығын ерекшелеу" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "кез-келген сөз" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "Индекс қосу" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Индексті өзгерту" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add columns" msgid "Add %s column(s) to index" msgstr "Бағаналар қосу" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add columns" msgid "Please select column(s) for the index." msgstr "Бағаналар қосу" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "Жаңартылуға жіберілген сұраныс" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Sort" msgid "Matched rows:" msgstr "Сұрыптау" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "Осы мәнді қолданыңыз" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Хост аты бос тұр!" -#: js/messages.php:122 +#: js/messages.php:123 #, fuzzy msgid "The user name is empty!" msgstr "Қолданушы аты бос тұр!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Құпия сөз бос тұр!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Құпия сөздер бір-біріне ұқсамайды!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Таңдалынған қолдаушыларды жою" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Жабу" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Table %s has been emptied." msgid "Template was deleted." msgstr "%s кестесі аластанды" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Басқа" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Local monitor configuration incompatible" msgid "Local monitor configuration incompatible!" msgstr "Локальды монитордың баптауы үйлеспеуде" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1204,166 +1210,166 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System swap" msgid "System CPU usage" msgstr "Үстемелеу жүйесі" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Жүйелiк жад" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Үстемелеу жүйесі" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Бос жад" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Қолданылудағы жад" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Барлығы" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "System swap" msgid "Used swap" msgstr "Үстемелеу жүйесі" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "System swap" msgid "Free swap" msgstr "Үстемелеу жүйесі" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy msgid "Bytes received" msgstr "Байт қабылданды" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Процесстер" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "ЭБ" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d Кесте(лер)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Сұрақтар" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Трафик" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Баптау" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Торға график қосу" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1375,47 +1381,47 @@ msgstr "Тәңiр жарылқасын, ең болмаса топтамаға msgid "None" msgstr "Жоқ" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "Айнымалылар general_log және slow_query_log қосулы." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "Айнымалы general_log қосулы." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "Айнымалы slow_query_log қосулы." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "Айнымалы slow_query_log және general_log өшірілген." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "Айнымалы log_output кесте үшін орнатылмаған." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "Айнымалы log_output кесте үшін орнатылды." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1423,137 +1429,137 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Қосу %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Өшіру %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "long_query_time орнату %d сек" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Баптауын өзгерту" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Ағымдағы баптау" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Бiрлiк" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Журналдарды талдау" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Журнал кестесіне өту" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Мәліметтер жоқ" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1561,7 +1567,7 @@ msgstr "" msgid "Status" msgstr "Күй" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1571,82 +1577,82 @@ msgstr "Күй" msgid "Time" msgstr "Уақыт" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Толық уақыт:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Кесте" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "График" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Сүзгі" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Топтасқан қатарлар сомасы:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Барлығы:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Журналдардың жүктелуі" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1656,61 +1662,61 @@ msgstr "" msgid "Import" msgstr "Импорт" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyze table" msgid "Analyse query" msgstr "Кестенiң талдауы" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Мәселе" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Ұсыныс" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Дәлелдеу" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Қолданған айнымалы / формула" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Тест" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1721,69 +1727,69 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Баптауын өзгерту" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Жүктелуде…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Процесстер" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query execution time" msgid "Request failed!!" msgstr "Сұраныстың орындалу уақыты" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Бағананың жойылуы" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add/Delete columns" msgid "Adding primary key" msgstr "Бағандарды Қосу/Өшіру" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1793,61 +1799,61 @@ msgstr "Бағандарды Қосу/Өшіру" msgid "OK" msgstr "Жарайды" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Дерекқорының атауын қайта қою." -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Дерекқорының көшірілуі" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Foreign key check:" msgid "Enable foreign key checks" msgstr "Сыртқы кілттерді тексерілісі:" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Іздеу" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Іздеу нәтижелерін көрсету" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Көру" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Жою" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1864,44 +1870,44 @@ msgstr "" msgid "Export" msgstr "Экспорт" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "%s баған мәні" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Жаңа баған мәні" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Әрбір мәнді жеке өріске енгізіңіз" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d мән(ін)(дерін) қосу" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Сұраныс өрісін жасыру" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Сұраныс өрісін көрсету" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1915,7 +1921,7 @@ msgstr "Сұраныс өрісін көрсету" msgid "Edit" msgstr "Өзгерту" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1927,626 +1933,627 @@ msgstr "Өзгерту" msgid "Delete" msgstr "Жою" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "Өшіру %s" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Дерекқорынан іздеу" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Бос жад" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "Бағана" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Бақылаудың есептемесі" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Дайын" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No rows selected" msgid "No dependencies selected!" msgstr "Бірде-бір қатар таңдалынбады" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сақтау" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "Бағана" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "Бағана" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Іздеу параметрлерiн жасыру" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Іздеу параметрлерiн көрсету" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Елемеу" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Көшіру" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Нүкте" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Сызық" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Көпбұрыш" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Геометрия" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Ішкі пішін" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Сыртқы пішін" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Сыртқы кілтті таңдаңыз" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Save" msgid "Save page" msgstr "Сақтау" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Save" msgid "Save page as" msgstr "Сақтау" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Жою" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Бiрлiк" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Байланыс схемасын түзету немесе экспорттау" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баған мәні" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Белгіні алу/орнату үшін шертіңіз" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "Атын көшіру үшін өріске тышқанмен екі рет шерту жасаңыз" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Бәрін көрсету" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Сызық" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "Импорт" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Барлығын ерекшелеу" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Сілтемеге өту" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Баған атын көшіру" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Шығару" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Тағы" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бәрін көрсету" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Индекстерді жасыру" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "Индекстерді көрсету" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Table" msgid "tables" msgstr "Кесте" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Түр" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Processes" msgid "procedures" msgstr "Процесстер" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Recommendation" msgid "events" msgstr "Ұсыныс" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Questions" msgid "functions" msgstr "Сұрақтар" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2554,453 +2561,453 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "Соңғы тұрақты болжам:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Баптауын өзгерту" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Бәрін көрсету" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Елемеу" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Кестеге түсініктеме" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Алдыңғы" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Келесі" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Бүгін" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Қаңтар" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Ақпан" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Наурыз" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "Сәуір" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Мамыр" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Маусым" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Шілде" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "Тамыз" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "Қыркүйек" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Қазан" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "Қараша" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Жел" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Жексенбі" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Дүйсенбі" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Сейсенбі" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Сәрсенбі" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Бейсенбі" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Жұма" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Сенбі" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Сен" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Жк" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Дс" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Сс" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Бс" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Жм" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Сн" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Апт" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Сағат" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Минут" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Секунд" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Барлығын ерекшелеу" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please enter at least {0} characters" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3942,7 +3949,7 @@ msgstr "Индекстер" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Әрекет" @@ -3953,8 +3960,8 @@ msgid "Keyname" msgstr "Индекс атауы" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3986,9 +3993,9 @@ msgstr "Салыстыру" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Пікірлеу" @@ -4003,14 +4010,14 @@ msgstr "Индекс %s жойылған болатын." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Жою" @@ -4120,7 +4127,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4764,17 +4771,23 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Linestring" @@ -4782,7 +4795,7 @@ msgctxt "string types" msgid "String" msgstr "Сызық" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4940,7 +4953,7 @@ msgstr "Осы мәнді қолданыңыз" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Қатарлар" @@ -5023,7 +5036,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7899,7 +7912,8 @@ msgid "No data to display" msgstr "Мәліметтер жоқ" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7941,34 +7955,35 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Бірде-бір қатар таңдалынбады" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Өзгерту" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7979,20 +7994,20 @@ msgstr "Өзгерту" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -9391,7 +9406,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9848,32 +9863,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9893,6 +9908,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10100,7 +10116,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -10124,21 +10140,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10236,7 +10252,7 @@ msgid "Database:" msgstr "Дерекқор" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Database" msgid "Data:" @@ -10337,7 +10353,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10407,7 +10423,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10482,24 +10498,24 @@ msgstr "AUTO_INCREMENT қосу" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT қосу" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -14424,7 +14440,7 @@ msgid "Pick from Central Columns" msgstr "Графикті жою" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -14438,80 +14454,80 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "%s баған мәні" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Creation:" msgid "Partitions:" msgstr "Құру:" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Description" msgid "Partition" msgstr "Сипаттама" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Use this value" msgid "Values" msgstr "Осы мәнді қолданыңыз" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "Мәлiметтердiң сөздiгi" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Sort" msgid "Max rows" msgstr "Сұрыптау" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "Browse" msgid "Min rows" msgstr "Шолу" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Databases" msgid "Table space" msgstr "Мәлімет қорлары" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Add user" msgid "Node group" @@ -15282,30 +15298,49 @@ msgid "at beginning of table" msgstr "Кестениң префиксін ауыстыру" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Индексі анықталмаған!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Linestring" msgid "Data length" msgstr "Сызық" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Indexes" msgid "Index length" msgstr "Индекстер" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Description" +msgid "Partition table" +msgstr "Сипаттама" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Edit Index" +msgid "Edit partitioning" +msgstr "Индексті өзгерту" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/km.po b/po/km.po index 35d92b02ef..a1c115ba1b 100644 --- a/po/km.po +++ b/po/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-04-19 18:59+0200\n" "Last-Translator: Sovichet Tep \n" "Language-Team: Central Khmer " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "ខ្វះ​តម្លៃ​ក្នុង​បែបបទ!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add Index" msgid "Add index" msgstr "បន្ថែម​សន្ទស្សន៍" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "កែ​សន្ទស្សន៍" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "តម្លៃ Y" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "ឈ្មោះ​អ្នក​ប្រើ​នៅ​ទទេ!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "ពាក្យ​សម្ងាត់​នៅ​ទទេ!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "ពាក្យ​សម្ងាត់​មិន​ដូច​គ្នា!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "ការ​លុប​អ្នក​ប្រើ​ដែល​បាន​ជ្រើស" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "បិទ" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Template was deleted." msgstr "បាន​លុប​ចំណាំ។" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "ផ្សេងៗ" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "ការ​ភ្ជាប់ / ដំណើរការ" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1145,159 +1151,159 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "ការ​ប្រើ CPU ប្រព័ន្ធ" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "អង្គ​ចងចាំ​ប្រព័ន្ធ" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "អង្គ​ចងចាំ​សរុប" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "អង្គ​ចងចាំ​ទំនេរ" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "អង្គ​ចងចាំ​ដែល​បាន​ប្រើ" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total:" msgid "Total swap" msgstr "សរុប៖" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "ចំនួន​បៃ​ដែល​បាន​ផ្ញើ" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "ចំនួន​បៃ​ដែល​បាន​ទទួល" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "ការ​តភ្ជាប់" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "ដំណើរការ" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d តារាង" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "សំណួរ" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "ចរាចរណ៍" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "ការ​កំណត់" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1309,47 +1315,47 @@ msgstr "" msgid "None" msgstr "គ្មាន" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1357,137 +1363,137 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "បើក %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "បិទ %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "កំណត់ long_query_time ទៅ %d វិនាទី។" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" "អ្នក​មិន​អាច​ផ្លាស់​ប្ដូរ​អថេរ​ទាំង​នេះ​ទេ។ សូម​ចូល​ជា root ឬ​ទាក់ទង​ទៅ​អ្នក​គ្រប់គ្រង​មូលដ្ឋាន​ទិន្នន័យ​របស់​អ្នក។" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "ការ​កំណត់​បច្ចុប្បន្ន" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "ភាព​ខុស​គ្នា" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "បាន​ចែក​នឹង %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "ពី​កំណត់​ត្រា​យឺត" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "ពី​កំណត់​ត្រា​ទូទៅ" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "បោះបង់​សំណើ" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "រក​មិន​ឃើញ​ទិន្នន័យ" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "បាន​វិភាគ​កំណត់ត្រា ប៉ុន្តែ​រក​មិន​ឃើញ​ទិន្នន័យ​ក្នុង​ពេល​នេះ​ទេ។" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "កំពុង​វិភាគ…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "ពន្យល់​លទ្ធផល" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1495,7 +1501,7 @@ msgstr "ពន្យល់​លទ្ធផល" msgid "Status" msgstr "ស្ថានភាព" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1505,82 +1511,82 @@ msgstr "ស្ថានភាព" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "តារាង" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "ត្រង" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "សរុប៖" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "កំពុង​ផ្ទុក​កំណត់ត្រា" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1590,59 +1596,59 @@ msgstr "" msgid "Import" msgstr "នាំចូល" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "បញ្ហា" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "ការ​ណែនាំ" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "សាកល្បង" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1653,73 +1659,73 @@ msgstr "" msgid "Cancel" msgstr "បោះបង់" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "កំពុង​ផ្ទុក…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "បាន​បោះបង់​សំណើ!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "កំពុង​ដំណើរការ​សំណើ" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Aborted!!" msgid "Request failed!!" msgstr "បាន​បោះបង់​សំណើ!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "មាន​កំហុស​ក្នុង​ពេល​ដំណើរការ​សំណើ" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "កូដ​កំហុស៖ %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "អត្ថបទ​កំហុស៖ %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "ការ​លុប​ជួរ​ឈរ" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Adding Primary Key" msgid "Adding primary key" msgstr "ការ​បន្ថែម​លេខ​ប​ឋម" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1729,59 +1735,59 @@ msgstr "ការ​បន្ថែម​លេខ​ប​ឋម" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Select All" msgid "Renaming databases" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Select All" msgid "Copying database" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1798,42 +1804,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1847,7 +1853,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1859,591 +1865,592 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Disable %s" msgid "Variable %d:" msgstr "បិទ %s" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "អង្គ​ចងចាំ​ទំនេរ" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "រួម​ចំណែក" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Reload page" msgid "Save page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Reload page" msgid "Save page as" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Reload page" msgid "Open page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Reload page" msgid "Delete page" msgstr "ផ្ទុក​ទំព័រ​ឡើង​វិញ" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid page name" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "បោះបង់" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "នាំចូល" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Table" msgid "tables" msgstr "តារាង" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Processes" msgid "procedures" msgstr "ដំណើរការ" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Recent" msgid "events" msgstr "ថ្មីៗ" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Action" msgid "functions" msgstr "សកម្មភាព" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2451,471 +2458,471 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "តើ​អ្នក​ពិត​ជា​លុប​ការ​ស្វែងរក \"%s\" មែនទេ?" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3789,7 +3796,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "សកម្មភាព" @@ -3800,8 +3807,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3833,9 +3840,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3850,14 +3857,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "លុប" @@ -3967,7 +3974,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4589,23 +4596,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4759,7 +4772,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "ជួរដេក" @@ -4838,7 +4851,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7641,7 +7654,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7674,32 +7688,33 @@ msgid "The name '%s' is a MySQL reserved keyword." msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7710,20 +7725,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -9077,7 +9092,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9519,32 +9534,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9564,6 +9579,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9768,7 +9784,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9792,21 +9808,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9896,7 +9912,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9989,7 +10005,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10059,7 +10075,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10124,24 +10140,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13978,7 +13994,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13992,72 +14008,72 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Creation:" msgid "Partitions:" msgstr "ការបង្កើត៖" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Y Values" msgid "Values" msgstr "តម្លៃ Y" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "Filter rows" msgid "Min rows" msgstr "ត្រង​ជួរ​ដេក" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table" msgid "Table space" msgstr "តារាង" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14776,26 +14792,43 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Creation:" +msgid "Partition table" +msgstr "ការបង្កើត៖" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Edit Index" +msgid "Edit partitioning" +msgstr "កែ​សន្ទស្សន៍" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/kn.po b/po/kn.po index 6b38edadb2..1e523e74ec 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-07-24 13:05+0200\n" "Last-Translator: Shameem Ahmed A Mulla \n" "Language-Team: Kannada " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1095,155 +1099,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1255,47 +1259,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1303,136 +1307,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1440,7 +1444,7 @@ msgstr "" msgid "Status" msgstr "ಸ್ಥಿತಿ" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1450,82 +1454,82 @@ msgstr "ಸ್ಥಿತಿ" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1535,59 +1539,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1598,59 +1602,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1660,55 +1664,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1725,42 +1729,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1774,7 +1778,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1786,556 +1790,557 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2343,437 +2348,437 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:604 +msgid "Show arguments" +msgstr "" + +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "ಜನವರಿ" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "ಫೆಬ್ರವರಿ" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "ಮಾರ್ಚ್" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "ಏಪ್ರಿಲ್" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "ಮೇ" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "ಜೂನ್" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "ಜುಲೈ" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "ಆಗಸ್ಟ್" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "ಸಪ್ಟೆಂಬರ್" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "ಅಕ್ಟೋಬರ್" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "ನವೆಂಬರ್" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "ಡಿಸೆಂಬರ್" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "ಜನ" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "ಫೆಬ್ರು" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "ಮಾ" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "ಏಪ್ರಿ" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "ಮೇ" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "ಜೂ" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "ಜು" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "ಆಗ" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "ಸೆಪ್ಟೆಂ" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "ಅಕ್ಟೋ" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "ನವೆಂ" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "ಡಿಸೆಂ" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "ರವಿವಾರ" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "ಸೋಮವಾರ" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "ಮಂಗಳವಾರ" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "ಬುಧವಾರ" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "ಗುರುವಾರ" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "ಶುಕ್ರವಾರ" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "ಶನಿವಾರ" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "ರ" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "ಸೋ" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "ಮಂ" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "ಬು" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "ಗು" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "ಶು" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "ಶನಿ" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "ರ" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "ಸೋ" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "ಮಂ" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "ಬು" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "ಗು" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "ಶು" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "ಶನಿ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3622,7 +3627,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "ಕ್ರಿಯೆ" @@ -3633,8 +3638,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3666,9 +3671,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3683,14 +3688,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "" @@ -3800,7 +3805,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4422,23 +4427,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4590,7 +4601,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "ಸಾಲುಗಳು" @@ -4669,7 +4680,7 @@ msgstr "ಯಾವುದೇ" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7446,7 +7457,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7480,32 +7492,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7516,20 +7529,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -8860,7 +8873,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9294,32 +9307,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9337,6 +9350,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9541,7 +9555,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9565,21 +9579,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9669,7 +9683,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9761,7 +9775,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9831,7 +9845,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9896,24 +9910,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13701,7 +13715,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13715,68 +13729,68 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Creation:" msgid "Partitions:" msgstr "ಸೃಷ್ಟಿ:" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table" msgid "Table space" msgstr "ಟೇಬಲ್" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14476,26 +14490,41 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Creation:" +msgid "Partition table" +msgstr "ಸೃಷ್ಟಿ:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +msgid "Edit partitioning" +msgstr "" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/ko.po b/po/ko.po index e4d99434e1..b1dfca0301 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-07 03:23+0200\n" "Last-Translator: Seongki Shin \n" "Language-Team: Korean " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "저장 & 닫기" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "초기화" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "모두 초기화" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "입력 폼 안에 빠진 값이 있습니다!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "하나 이상의 옵션을 선택하세요!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "올바른 숫자를 입력하세요!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "올바른 길이를 입력하세요!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "인덱스 추가" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "인덱스 수정" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "인덱스에 %s 열 추가" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "단일 컬럼 인덱스 생성" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "이것과 합치기:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "인덱스에 추가할 열을 선택해주세요." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "적어도 한 개 이상의 컬럼을 추가해야 합니다." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQL 미리보기" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "쿼리 시뮬레이션 하기" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "일치하는 행:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL 질의:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Y값" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "호스트명이 없습니다!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "사용자명이 없습니다!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "암호가 없습니다!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "선택한 사용자를 삭제" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "닫기" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "템플릿이 생성되었습니다." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "템플릿이 업데이트 되었습니다." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "템플릿이 삭제되었습니다." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "기타" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "연결 / 프로세스" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "호환되지 않는 로컬 모니터 설정입니다!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1135,155 +1141,155 @@ msgstr "" "지 않습니다. 현재 설정은 더 이상 작동되지 않을 수 있습니다. 설정메뉴에" "서 설정을 초기화해 주세요." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "질의 캐시 효율" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "질의 캐시 사용량" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "질의 캐시 사용됨" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "시스템 CPU 사용량" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "시스템 메모리" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "시스템 스왑" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "평균 부하" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "전체 메모리" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "캐시된 메모리" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "버퍼 메모리" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "사용가능 메모리" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "사용된 메모리" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "전체 스왑" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "캐시된 스왑" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "사용된 스왑" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "사용가능 스왑" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "바이트 보냄" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "바이트 받음" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "연결 수" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "프로세스" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d개 테이블(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "질의" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "소통량" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "설정" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "차트에 그리드 추가" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "하나 이상의 변수를 시리즈에 추가하십시오!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1295,47 +1301,47 @@ msgstr "하나 이상의 변수를 시리즈에 추가하십시오!" msgid "None" msgstr "없음" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "모니터링 재개" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "모니터링 정지" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "자동 새로고침 시작" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "자동 새로고침 중지" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "일반 로그와 슬로우 쿼리 로그가 활성화 되었습니다." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "일반 로그가 활성화 되었습니다." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "슬로우 쿼리 로그가 활성화 되었습니다." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "슬로우 쿼리 로그와 일반 로그가 비활성화 되었습니다." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "테이블에 대한 로그 출력이 설정되지 않았습니다." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "테이블에 대한 로그 출력이 설정되었습니다." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1347,12 +1353,12 @@ msgstr "" "을 0-2초로 설정하는 것을 권장합니다. 사용하는 시스템에 따라 적절하게 설정하" "십시오." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time이 %d초로 설정되였습니다." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1360,30 +1366,30 @@ msgstr "" "다음 설정은 서버 전체에 적용되고 서버 재기동시 기본 설정으로 초기화됩니다:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "로그 출력을 %s로 설정" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "%s 사용가능" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "%s 사용안함" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time을 %d초로 설정." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1391,58 +1397,58 @@ msgstr "" "변수들을 변경할 수 없습니다. root로 로그인하거나 데이터베이스 관리자에게 문의" "하십시오." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "설정 변경" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "차트 제목" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "차이" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "%s로 구분" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "단위" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "느린 로그로부터" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "일반 로그로부터" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" "서버의 로그에 저장된 이 쿼리에 해당하는 데이터베이스 이름을 알 수 없습니다." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "로그 분석 중" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "로그를 읽고 분석합니다. 이 작업은 시간이 걸릴 수 있습니다." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "요청 취소" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1451,7 +1457,7 @@ msgstr "" "이 열은 함께 그룹화된 동일한 질의의 양을 보여줍니다. 그러나 질의 자체만으로 " "그룹화하기 때문에, 시작 시간 등의 질의에 대한 다른 특성은 다를 수 있습니다." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1460,31 +1466,31 @@ msgstr "" "INSERT 쿼리들만 선택되었기 때문에, 입력하는 데이터에 상관없이 같은 테이블을 " "대상으로 하는 쿼리들끼리 또 분류되었습니다." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "로그자료가 로드되었습니다. 쿼리들이 실행되었던 기간:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "로그 테이블로 이동" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "자료가 없습니다" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "로그가 분석되었습니다. 하지만 해당 기간내에는 자료가 없습니다." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "분석중…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "SQL 해석" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1492,7 +1498,7 @@ msgstr "SQL 해석" msgid "Status" msgstr "상태" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1502,58 +1508,58 @@ msgstr "상태" msgid "Time" msgstr "시간" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "전체 시간:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "프로파일링 결과" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "테이블" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "차트" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "로그 테이블의 필터 옵션" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "필터" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "단어/정규식에 의한 필터 질의:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "그룹 쿼리, WHERE 절 변수 데이터를 무시합니다" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "그룹화된 행의 합계:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "전체:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "로그를 불러오는 중" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "모니터링 리프리쉬가 실패하였습니다" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1563,24 +1569,24 @@ msgstr "" "의 경우 세션이 만료되었기 때문입니다.페이지를 다시 로드하고 새로 인증받는 것" "이 도움이 될것입니다." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "페이지 새로고침" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "적용된 행:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "설정 파일을 분석할 수 없습니다. 유효한 JSON 코드가 아닙니다." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. 기본 설정으로 적용중…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1590,59 +1596,59 @@ msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. msgid "Import" msgstr "가져오기" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "모니터 설정 가져오기" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "가져올 파일을 선택하세요." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "가져오기를 수행하기 위한 파일이 서버에 없습니다!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "질의 분석" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "조언 시스템" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "가능한 성능 문제" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "이슈" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "추천" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "규칙 세부 사항" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "인증" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "사용된 변수 / 수식" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "테스트" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1653,59 +1659,59 @@ msgstr "" msgid "Cancel" msgstr "취소" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "페이지 관련 설정" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "적용" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "불러오는 중…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "요청이 취소되었습니다!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "요청 처리 중" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "요청에 실패했습니다!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "요청 처리 중 에러 발생" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "오류 코드: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "에러 메시지: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "데이터베이스를 선택하지 않았습니다." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "열 삭제 중" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "기본키 추가 중" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1715,55 +1721,55 @@ msgstr "기본키 추가 중" msgid "OK" msgstr "확인" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "클릭하면 이 알림을 받지 않습니다" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "데이터베이스 이름 변경 중" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "데이터베이스 복사 중" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "문자셋 변경 중" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "외래 키(foreign key) 점검 사용" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "실제 줄 갯수 알아오기 실패." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "검색중" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "검색 결과 숨기기" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "검색 결과 보이기" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "보기" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "삭제중" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "저장 함수의 정의는 RETURN문을 포함해야 합니다!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1780,42 +1786,42 @@ msgstr "저장 함수의 정의는 RETURN문을 포함해야 합니다!" msgid "Export" msgstr "내보내기" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET 수정" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "\"%s\" 열의 값" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "새로운 열의 값" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "각각의 필드에 값을 입력하세요." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d 값 추가" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "참고: 파일에 여러 테이블이 포함되어 있다면, 하나로 결합됩니다." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "질의 상자 숨기기" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "질의 상자 보이기" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1829,7 +1835,7 @@ msgstr "질의 상자 보이기" msgid "Edit" msgstr "수정" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1841,124 +1847,124 @@ msgstr "수정" msgid "Delete" msgstr "삭제" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d는 올바른 행번호가 아닙니다." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "외래값 탐색" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "변수 %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "고르기" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "컬럼 셀렉터" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "현재 리스트 검색" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "더 보기" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "정말로?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "컬럼 정의의 일부가 변경될 수도 있습니다.
계속하겠습니까?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "계속" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "기본키 추가" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "기본 키가 추가되었습니다." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "다음 단계로 가는 중…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "정규화의 첫번째 단계는 테이블 '%s'를 완성하는 것이다." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "단계의 끝" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "정규화의 두번째 단계 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "완료" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "부분 의존성 확인" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "선택된 부분 의존성은 다음과 같다:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "부분 의존성이 선택되지 않았습니다!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "부분 의존성 목록을 숨김" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -1966,187 +1972,188 @@ msgstr "" "잠시 기다리십시오! 데이터의 크기와 열의 갯수에 따라 수 초 가량 시간이 걸릴 " "수 있습니다." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "단계" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "다음의 행동이 수행될 것이다:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "다음 테이블을 생성" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "정규화의 세번째 단계 (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "선택된 의존성은 다음과 같다:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "의존성이 선택되지 않았습니다!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "저장" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "검색 조건 숨기기" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "검색 조건 보이기" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "범위 검색" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "열(컬럼) 최댓값:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "열(컬럼) 최솟값:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "최솟값:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "최댓값:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "찾기와 바꾸기 조건 숨김" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "찾기와 바꾸기 조건 보임" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "각 포인트는 데이터 행을 나타냅니다." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "포인트에 마우스를 올리면 라벨이 표시됩니다." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "확대하려면 마우스로 플롯의 한 영역을 선택하세요." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "줌 원래대로 보기 버튼을 클릭하면 원본 상태로 돌아갑니다." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "데이터 포인트(플롯 지점)를 클릭하면 행의 열람과 편집이 가능합니다." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "우측 하단 코너로 드래그하여 플롯을 확대할 수 있습니다." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "두 개의 열 선택" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "두 개의 서로다른 열 선택" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "데이터 포인트 내용" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "무시" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "복사" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "포인트" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "줄(열) 구분자" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "폴리곤" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "기하데이터" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "내부 원" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "외부 원" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "암호화 키를 복사하겠습니까?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "암호화 키" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "참고키 선택" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "외래키 선택" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "기본키 혹은 유니크키를 선택하십시오!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2154,77 +2161,77 @@ msgstr "" "레이아웃의 변경을 저장하지 않았습니다. 저장하지 않으면, 변경사항이 손실됩니" "다. 이대로 계속 하시겠습니까?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "페이지 이름" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "페이지 저장" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "페이지를 다른 이름으로 저장" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "페이지 열기" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "페이지 삭제" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "제목 없음" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "계속할 페이지를 선택하세요" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "올바른 페이지 이름을 입력하세요" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "현재 페이지의 수정된 내용을 저장하겠습니까?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "페이지 삭제 성공" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "관계 스키마를 내보내기" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "컬럼 \"%s\"에 대한옵션 추가 ." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d 개의 개체가 생성되었습니다." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "확인" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "편집을 취소하려면 ESC를 누르세요." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2232,15 +2239,15 @@ msgstr "" "일부 데이터를 변경한 후 저장하지 않았습니다. 데이터를 저장하지 않고 페이지를 " "이동하기를 원합니까?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "재정렬하려면 드래그하세요." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "이 열의 값에 따라 결과를 정렬하려면 누르세요." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2250,26 +2257,26 @@ msgstr "" "
- Ctrl+Click 또는 Alt+Click (맥: Shift+Option+Click) 으로 ORDER BY 절로" "부터 이 컬럼 제거" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "선택/해제하려면 클릭하세요." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "칼럼명을 복사하려면 더블클릭하세요." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "칼럼보이기 여부를 바꾸려면
드롭다운 화살표를 클릭하세요." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "모두 보기" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2277,11 +2284,11 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 저장 시에 격자창 편집, 체크박" "스, 편집, 복사, 삭제 등의 기능이 정상적으로 동작하지 않을 수 있습니다." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "올바른 16진수 문자열을 입력하세요. 사용가능한 문자는 0-9, A-F 입니다." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2289,123 +2296,123 @@ msgstr "" "정말 모든 열을 보시겠습니까? 테이블 크기가 큰 경우 브라우저가 정지할 수 있습" "니다." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "원본 길이" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "취소" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "중지됨" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "성공" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "상태 가져오기" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "파일을 여기로 끌어오세요" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "데이터베이스를 먼저 선택하세요" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "값을 더블클릭 하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "값을 클릭하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "다음 링크로 이동:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "컬럼 이름 복사." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "마우스 오른쪽버튼을 클릭하여 클립보드에 컬럼 이름을 복사할 수 있습니다." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "암호 생성" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "생성" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "더보기" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "패널 표시" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "패널 숨기기" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "숨겨진 탐색 트리의 항목보기." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "매인 패널에 링크" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "매인 패널에서 링크 해제" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "테이블" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "뷰" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "프로시저" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "이벤트" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "함수" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" "요청하신 페이지를 기록에서 찾을 수 없습니다. 만기 되었을 수도 있습니다." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2414,48 +2421,48 @@ msgstr "" "phpMyAdmin 업그레이드가 필요합니다. 최신버전은 %s이며 %s에 릴리즈 되었습니다." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", 최신 안정 버전:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "최신버전" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "뷰 생성" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "오류 보고서 전송" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "오류 보고서 제출" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "치명적인 자바스크립트 오류 발생. 오류를 전송할까요?" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "보고서 설정 변경" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "보고서 상세 보기" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "PHP의 실행시간 제한에 걸려 내보내기가 완료되지 않았습니다!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2464,389 +2471,389 @@ msgstr "" "경고: 현재 페이지의 폼 필드는 %d개가 넘습니다. 폼이 전송될 때 PHP의 " "max_input_vars 설정에 의해 일부 필드가 손실될 수 있습니다." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "서버 에러가 감지되었습니다!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "이 창의 아래쪽을 보세요." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "모두 무시" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "각 설정은 현재 전송중입니다. 기다려주세요." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "이 질의를 다시 실행합니까?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "정말 이 북마크를 삭제하겠습니까?" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 msgid "Show arguments" msgstr "매개변수 보이기" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "매개변수 숨기기" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "이전" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "오늘" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "1월" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "2월" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "3월" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "4월" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "5월" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "6월" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "7월" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "8월" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "9월" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "10월" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "11월" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "12월" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "일요일" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "월요일" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "목요일" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "금요일" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "주" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "없음" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "시" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "분" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "초" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "이 필드를 수정하세요" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "올바른 이메일 주소를 입력하세요" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "올바른 URL을 입력하세요" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "올바른 날짜를 입력하세요" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "올바른 날짜(ISO 형식)를 입력하세요" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "올바른 숫자를 입력하세요" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "올바른 신용 카드 번호를 입력하세요" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "숫자만 입력해 주세요" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "같은 값을 한번 더 입력하세요" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "최소 {0} 글자 이상 입력해주세요" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "{0} 에서 {1} 사이의 값을 입력하세요" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "{0}과 같거나 작은 값을 입력하세요" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "{0}과 같거나 큰 값을 입력하세요" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "올바른 날짜 또는 시간을 입력하세요" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "올바른 HEX값을 입력하세요" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3701,7 +3708,7 @@ msgstr "인덱스" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "실행" @@ -3712,8 +3719,8 @@ msgid "Keyname" msgstr "키 이름" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3745,9 +3752,9 @@ msgstr "데이터정렬방식" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "설명" @@ -3762,14 +3769,14 @@ msgstr "인덱스 %s 를 제거했습니다." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "삭제" @@ -3880,7 +3887,7 @@ msgstr "SQL 명령어 트래킹" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4547,23 +4554,29 @@ msgstr "폴리곤들의 집합" msgid "A collection of geometry objects of any type" msgstr "모든 종류의 기하데이터 객체들의 집합" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "숫자" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "날짜와 시간" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "문자열" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "공간(좌표)형" @@ -4715,7 +4728,7 @@ msgstr "이 값을 사용합니다" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "행" @@ -4794,7 +4807,7 @@ msgstr "아니오" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "이름" @@ -7835,7 +7848,8 @@ msgid "No data to display" msgstr "표시할 데이터 없음" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7875,33 +7889,34 @@ msgid "The name '%s' is a MySQL reserved keyword." msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "'%s'라는 컬럼명은 MySQL 예약어입니다." -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "선택된 열이 없습니다." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "컬럼을 이동했습니다." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "질의 오류" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "테이블 %1$s 가 성공적으로 수정되었습니다." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "질의 오류" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "변경" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7912,20 +7927,20 @@ msgstr "변경" msgid "Index" msgstr "인덱스" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "중복되지 않은 값" @@ -9342,7 +9357,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "뷰" @@ -9792,32 +9807,32 @@ msgid "Delete the table (DROP)" msgstr "테이블 삭제(DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "분석" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "검사" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "옵티마이저" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "리빌드" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "복구" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9837,6 +9852,7 @@ msgid "Partition %s" msgstr "파티션 %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "파티셔닝 삭제" @@ -10055,7 +10071,7 @@ msgstr "데이터 덤프 옵션" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "테이블의 덤프 데이터" @@ -10079,21 +10095,21 @@ msgstr "정의" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "테이블 구조" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "뷰 구조" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10185,7 +10201,7 @@ msgid "Database:" msgstr "데이터베이스:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "데이터:" @@ -10290,7 +10306,7 @@ msgid "Data creation options" msgstr "데이터 생성 옵션" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "삽입 전에 테이블 비우기" @@ -10368,7 +10384,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10436,25 +10452,25 @@ msgstr "덤프된 테이블의 AUTO_INCREMENT" msgid "AUTO_INCREMENT for table" msgstr "테이블의 AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "뷰 구조" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "데이터 읽기 오류:" @@ -14539,7 +14555,7 @@ msgid "Pick from Central Columns" msgstr "즐겨찾기에서 삭제" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -14555,92 +14571,92 @@ msgstr "맨 처음" msgid "after %s" msgstr "%s 다음에" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "파티션 있음" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "\"%s\" 열의 값" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "파티션 %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "파티션 있음" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "파티션 있음" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "파티션 %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "값" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "파티션 있음" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "엔진" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "데이터 홈 디렉토리" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "저장 디렉토리" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "일치하는 행:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "Filter rows" msgid "Min rows" msgstr "행 필터링" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "테이블 검색" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -15412,7 +15428,7 @@ msgid "at beginning of table" msgstr "테이블의 처음" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -15420,28 +15436,47 @@ msgstr "파티션 %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "인덱스가 설정되지 않았습니다!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "파티션 있음" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "파티션 있음" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "행 길이" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "행 길이" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "파티션 있음" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "파티셔닝 삭제" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "뷰 편집" diff --git a/po/ksh.po b/po/ksh.po index f9c0c17e3d..23fe62abb5 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Alle ußwähle" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add a point" msgid "Add index" msgstr "Donn ene Pungk derbei" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "" -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1101,155 +1105,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1261,47 +1265,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1309,136 +1313,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1446,7 +1450,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1456,82 +1460,82 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1541,59 +1545,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1604,59 +1608,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1666,59 +1670,59 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Select All" msgid "Renaming databases" msgstr "Alle ußwähle" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Select All" msgid "Copying database" msgstr "Alle ußwähle" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1735,42 +1739,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1784,7 +1788,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1796,562 +1800,563 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Alle ußwähle" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "not active" msgid "Show panel" msgstr "nit aktief" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Table" msgid "tables" msgstr "Tabäll" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2359,439 +2364,439 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:604 +msgid "Show arguments" +msgstr "" + +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Alle ußwähle" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3652,7 +3657,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "" @@ -3663,8 +3668,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3696,9 +3701,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3713,14 +3718,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Falle lohße" @@ -3830,7 +3835,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4457,23 +4462,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4625,7 +4636,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Reije" @@ -4704,7 +4715,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7496,7 +7507,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7531,32 +7543,33 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7567,20 +7580,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -8922,7 +8935,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9359,32 +9372,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9402,6 +9415,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9606,7 +9620,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9630,21 +9644,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9734,7 +9748,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9826,7 +9840,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9896,7 +9910,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9961,24 +9975,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13767,7 +13781,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13781,66 +13795,66 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table" msgid "Table space" msgstr "Tabäll" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14543,26 +14557,40 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +msgid "Partition table" +msgstr "Ein Tabäll" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +msgid "Edit partitioning" +msgstr "" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/ky.po b/po/ky.po index 3812645196..d34dc73e64 100644 --- a/po/ky.po +++ b/po/ky.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-02-03 16:59+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Баарын танда" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add a point" msgid "Add index" msgstr "Чекит кой" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Database %1$s has been created." msgid "Template was deleted." msgstr "%1$s аттуу берилиштер базасы түзүлдү." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "" -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1120,155 +1124,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1280,47 +1284,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1328,136 +1332,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1465,7 +1469,7 @@ msgstr "" msgid "Status" msgstr "Статус" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1475,82 +1479,82 @@ msgstr "Статус" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1560,59 +1564,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1623,61 +1627,61 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "Adding primary key" msgstr "\"%s\" мамычанын мааниси" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1687,59 +1691,59 @@ msgstr "\"%s\" мамычанын мааниси" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Select All" msgid "Renaming databases" msgstr "Баарын танда" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Select All" msgid "Copying database" msgstr "Баарын танда" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1756,42 +1760,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1805,7 +1809,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1817,569 +1821,570 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner ring %d:" msgid "Inner ring" msgstr "Ички шакекче %d:" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Сырткы шакекче:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" мамычанын мааниси" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Баарын танда" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Table" msgid "tables" msgstr "Жадыбал" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Action" msgid "functions" msgstr "Кыймыл" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2387,441 +2392,441 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Баарын танда" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3685,7 +3690,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Кыймыл" @@ -3696,8 +3701,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3729,9 +3734,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3746,14 +3751,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Алып сал" @@ -3863,7 +3868,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4487,23 +4492,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4655,7 +4666,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "катарлар" @@ -4734,7 +4745,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7538,7 +7549,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7574,32 +7586,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7610,20 +7623,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -8970,7 +8983,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9413,32 +9426,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9456,6 +9469,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9660,7 +9674,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9684,21 +9698,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9788,7 +9802,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9880,7 +9894,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9950,7 +9964,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10015,24 +10029,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13856,7 +13870,7 @@ msgid "Pick from Central Columns" msgstr "\"%s\" мамычанын мааниси" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13870,68 +13884,68 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Creation:" msgid "Partitions:" msgstr "Тузуу:" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table" msgid "Table space" msgstr "Жадыбал" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14650,26 +14664,41 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Creation:" +msgid "Partition table" +msgstr "Тузуу:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +msgid "Edit partitioning" +msgstr "" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/li.po b/po/li.po index 3f1cf694d2..58d8d8857a 100644 --- a/po/li.po +++ b/po/li.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-12-21 13:06+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" @@ -167,8 +167,8 @@ msgid "Comments" msgstr "" #: db_datadict.php:156 -#: libraries/controllers/TableStructureController.class.php:952 -#: libraries/controllers/TableStructureController.class.php:957 +#: libraries/controllers/TableStructureController.class.php:1183 +#: libraries/controllers/TableStructureController.class.php:1188 #: libraries/tracking.lib.php:922 #: templates/columns_definitions/column_indexes.phtml:6 #: templates/table/structure/check_all_table_column.phtml:22 @@ -176,7 +176,7 @@ msgstr "" msgid "Primary" msgstr "" -#: db_datadict.php:166 js/messages.php:317 libraries/Index.class.php:567 +#: db_datadict.php:166 js/messages.php:318 libraries/Index.class.php:567 #: libraries/Index.class.php:606 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 libraries/mult_submits.lib.php:403 @@ -200,16 +200,16 @@ msgstr "" msgid "No" msgstr "" -#: db_datadict.php:166 js/messages.php:444 libraries/Index.class.php:568 +#: db_datadict.php:166 js/messages.php:445 libraries/Index.class.php:568 #: libraries/Index.class.php:605 libraries/Index.class.php:1021 #: libraries/central_columns.lib.php:966 #: libraries/config/FormDisplay.tpl.php:279 -#: libraries/controllers/TableStructureController.class.php:541 -#: libraries/controllers/TableStructureController.class.php:1203 -#: libraries/controllers/TableStructureController.class.php:1212 -#: libraries/controllers/TableStructureController.class.php:1217 -#: libraries/controllers/TableStructureController.class.php:1222 -#: libraries/controllers/TableStructureController.class.php:1227 +#: libraries/controllers/TableStructureController.class.php:772 +#: libraries/controllers/TableStructureController.class.php:1434 +#: libraries/controllers/TableStructureController.class.php:1443 +#: libraries/controllers/TableStructureController.class.php:1448 +#: libraries/controllers/TableStructureController.class.php:1453 +#: libraries/controllers/TableStructureController.class.php:1458 #: libraries/mult_submits.inc.php:82 libraries/mult_submits.inc.php:195 #: libraries/mult_submits.lib.php:339 libraries/mult_submits.lib.php:372 #: libraries/mult_submits.lib.php:401 libraries/mult_submits.lib.php:415 @@ -251,7 +251,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_Table_Container.class.php:26 #: libraries/navigation/Nodes/Node_Table_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:119 -#: templates/database/structure/show_create.phtml:18 +#: templates/database/structure/show_create.phtml:19 msgid "Tables" msgstr "" @@ -408,23 +408,23 @@ msgid "Point:" msgstr "" #: gis_data_editor.php:214 gis_data_editor.php:241 gis_data_editor.php:297 -#: gis_data_editor.php:370 js/messages.php:433 +#: gis_data_editor.php:370 js/messages.php:434 msgid "X" msgstr "" #: gis_data_editor.php:217 gis_data_editor.php:245 gis_data_editor.php:301 -#: gis_data_editor.php:376 js/messages.php:434 +#: gis_data_editor.php:376 js/messages.php:435 msgid "Y" msgstr "" #: gis_data_editor.php:239 gis_data_editor.php:295 gis_data_editor.php:368 -#: js/messages.php:436 +#: js/messages.php:437 #, php-format msgid "Point %d" msgstr "" #: gis_data_editor.php:252 gis_data_editor.php:308 gis_data_editor.php:386 -#: js/messages.php:442 +#: js/messages.php:443 msgid "Add a point" msgstr "" @@ -446,7 +446,7 @@ msgstr "" msgid "Add a linestring" msgstr "" -#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:443 +#: gis_data_editor.php:312 gis_data_editor.php:391 js/messages.php:444 msgid "Add an inner ring" msgstr "" @@ -463,7 +463,7 @@ msgstr "" msgid "Add geometry" msgstr "" -#: gis_data_editor.php:409 js/messages.php:292 +#: gis_data_editor.php:409 js/messages.php:293 #: libraries/DbSearch.class.php:464 libraries/DisplayResults.class.php:1799 #: libraries/browse_foreigners.lib.php:142 #: libraries/display_change_password.lib.php:166 @@ -516,7 +516,7 @@ msgstr "" msgid "Succeeded" msgstr "" -#: import.php:58 js/messages.php:501 +#: import.php:58 js/messages.php:502 msgid "Failed" msgstr "" @@ -597,7 +597,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:112 js/messages.php:378 libraries/Util.class.php:780 +#: import_status.php:112 js/messages.php:379 libraries/Util.class.php:780 #: libraries/export.lib.php:518 #: libraries/plugins/schema/Export_Relation_Schema.class.php:298 #: user_password.php:253 @@ -620,7 +620,7 @@ msgstr "" msgid "General settings" msgstr "" -#: index.php:191 js/messages.php:525 +#: index.php:191 js/messages.php:526 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:247 msgid "Change password" @@ -891,7 +891,11 @@ msgstr "" msgid "Do you really want to TRUNCATE the selected partition(s)?" msgstr "" -#: js/messages.php:67 +#: js/messages.php:66 +msgid "Do you really want to remove partitioning?" +msgstr "" + +#: js/messages.php:68 msgid "" "This operation will attempt to convert your data to the new collation. In " "rare cases, especially where a character doesn't exist in the new collation, " @@ -900,15 +904,15 @@ msgid "" "refer to the tips at " msgstr "" -#: js/messages.php:73 +#: js/messages.php:74 msgid "Garbled Data" msgstr "" -#: js/messages.php:75 +#: js/messages.php:76 msgid "Are you sure you wish to change the collation and convert the data?" msgstr "" -#: js/messages.php:77 +#: js/messages.php:78 msgid "" "Through this operation, MySQL attempts to map the data values between " "collations. If the character sets are incompatible, there may be data loss " @@ -918,167 +922,167 @@ msgid "" "" msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1086,155 +1090,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1246,47 +1250,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1294,136 +1298,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1431,7 +1435,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1441,82 +1445,82 @@ msgstr "" msgid "Time" msgstr "Tied" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1526,59 +1530,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1589,59 +1593,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1651,55 +1655,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1716,42 +1720,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1765,7 +1769,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1777,556 +1781,557 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 msgid "Show panel" msgstr "" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2334,437 +2339,437 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 -msgid "Show arguments" +#, php-format +msgid "%s argument(s) passed" msgstr "" #: js/messages.php:604 +msgid "Show arguments" +msgstr "" + +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "jannewarie" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "fibberwarie" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "miert" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "april" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "mei" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "juni" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "juli" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "augustus" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "september" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "oktober" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "november" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "dec" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Oer" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "secónd" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3611,7 +3616,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "" @@ -3622,8 +3627,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3655,9 +3660,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3672,14 +3677,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "" @@ -3789,7 +3794,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4411,23 +4416,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4575,7 +4586,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "" @@ -4654,7 +4665,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7431,7 +7442,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7465,32 +7477,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7501,20 +7514,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -8845,7 +8858,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9279,32 +9292,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9322,6 +9335,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9526,7 +9540,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9550,21 +9564,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9654,7 +9668,7 @@ msgid "Database:" msgstr "Database:" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9746,7 +9760,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9816,7 +9830,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9881,24 +9895,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13680,7 +13694,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13694,64 +13708,64 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 msgid "Partitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 msgid "Table space" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14453,26 +14467,39 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +msgid "Partition table" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +msgid "Edit partitioning" +msgstr "" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/lt.po b/po/lt.po index be59e7a8df..e6fa9cd829 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-02-15 18:57+0200\n" "Last-Translator: Vytautas Motuzas \n" "Language-Team: Lithuanian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Išsaugoti į failą" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Atstatyti į pradinę būseną" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Pažymėti visas" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Trūksta reikšmės formoje!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "bent vienas iš žodžių" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number!" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid length!" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Pridėti indeksą" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Redaguoti indeksą" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Pridėti %s stulpelį(-ius) į indeksą" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Sukurti sąryšį" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Sukurti sąryšį" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Columns enclosed with:" msgid "Composite with:" msgstr "Laukų reikšmės apskliaustos su:" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "Pridėti %s stulpelį(-ius) į indeksą" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Jūs turite pridėti bent vieną stulpelį (ar skiltį)." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "užklausa vykdoma" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Paveiktos eilutės:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL užklausa" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Reikšmės" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Tuščias prisijungimo adresas!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Tuščias vartotojo vardas!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Tuščias slaptažodis!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Šalinami pažymėti vartotojai" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Uždaryti" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Sukurtų puslapių skaičius." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profilis papildytas." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Eilutė buvo ištrinta" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Kita" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Prisijungimai / Procesai" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Failed to read configuration file" msgid "Local monitor configuration incompatible!" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1228,169 +1234,169 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Užklausų pagreitinimo (kešo) efektyvumas" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Užklausų pagreitinimo (kešo) naudojamumas" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Užklausų pagreitinimas (kešas) naudojamas" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistemos CPU naudojimas" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Sistemos atmintis" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Sistemos swap" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Vidutinis apkrovimas" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Iš viso atminties" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Podėlio atmintis" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Buferio atmintis" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Laisva atmintis" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Naudojama atmintis" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Iš viso Swap" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Podėlio Swap" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Naudojama swap" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Laisva Swap" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Išsiųsta baitų" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Gauta baitų" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Prisijungimai" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Procesai" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d lentelė(-ės)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Apkrovimas" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Nustatymai" -#: js/messages.php:186 +#: js/messages.php:187 #, fuzzy #| msgid "Snap to grid" msgid "Add chart to grid" msgstr "Pritraukti prie tinklelio" -#: js/messages.php:188 +#: js/messages.php:189 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please add at least one variable to the series!" msgstr "Prašome pridėti bent vieną kintamąjį į eilę" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1402,47 +1408,47 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę" msgid "None" msgstr "Ne" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log ir slow_query_log yra įjungti." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log įjungtas." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log įjungtas." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log ir general_log yra išjungti." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1450,12 +1456,12 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time yra nustatytas į %d sekundė(-es/-žių)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1464,31 +1470,31 @@ msgstr "" "serverio pakartotino paleidimo:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Nustatyti log_output į %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Įjungti %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Išjungti %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Set long_query_time to %ds" msgid "Set long_query_time to %d seconds." msgstr "Nustatyti long_query_time į %ds" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1496,95 +1502,95 @@ msgstr "" "Jūs negalite pakeisti šių kintamųjų. Prašome prisijungti kaip root arba " "susisiekite su Jūsų duombazės administratoriumi." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Keisti nustatymus" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Dabartiniai nustatymai" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Diagramos antraštė" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Skirtumas" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Padalintas į %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Vienetas" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analizuojami žurnalai" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Atsisakyti užklausos" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Eiti į žurnalo lentelę" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Duomenys nerasti" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analizuojama…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Paaiškinti išvestį" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1592,7 +1598,7 @@ msgstr "Paaiškinti išvestį" msgid "Status" msgstr "Būsena" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1602,88 +1608,88 @@ msgstr "Būsena" msgid "Time" msgstr "Laikas" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Iš viso užtruko:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profiliavimo rezultatai" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Lentelė" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Diagrama" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Tables display options" msgid "Log table filter options" msgstr "Lentelių rodymo nustatymai" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtras" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtro užklausa pagal žodį/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "Sugrupuoti užklausas, nepaisant kintamųjų duomenų WHERE dalyje" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Sugrupuotų eilučių suma:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Iš viso:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Įkeliami žurnalai" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Puslapį įkelti iš naujo" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Paveiktos eilutės:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Nepavyko išnagrinėti konfigūracinio failo. Atrodo, kad tai nėra teisingas " "JSON kodas." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Nepavyko sudaryti diagramos tinklelio su importuota konfigūracija. Nustatoma " "į numatytąją konfigūraciją…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1693,67 +1699,67 @@ msgstr "" msgid "Import" msgstr "Importuoti" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Nepavyko importuoti konfigūracijos" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Atnaujinti užklausą" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Galimos našumo bėdos" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Bėda" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Rekomendacija" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Taisyklės detalės" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Authentication" msgid "Justification" msgstr "Atpažinimas" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Naudojamas kintamasis / formulė" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Išbandyti" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1764,71 +1770,71 @@ msgstr "" msgid "Cancel" msgstr "Atšaukti" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Keisti nustatymus" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Įkeliama…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Vykdoma užklausa" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Užklausų saugykla" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in processing request" msgid "Error in processing request" msgstr "Klaida vykdant užklausą" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Šalinamas stulpelis" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Pridėti pirminį raktą" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1838,67 +1844,67 @@ msgstr "Pridėti pirminį raktą" msgid "OK" msgstr "Gerai" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Paspauskite, kad praleistumėte šį perspėjimą" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Keičiamas duomenų bazės pavadinimas" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopijuojama duomenų bazė" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Keičiama koduotė" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Atsisakyti išorinių raktų tikrinimo" -#: js/messages.php:323 +#: js/messages.php:324 #, fuzzy #| msgid "Failed to fetch headers" msgid "Failed to get real row count." msgstr "Nepavyko gauti/priimti antraščių" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Ieškoma" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Rodyti paieškos rezultatas" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Peržiūrėti" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Šaliname" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Apibrėžimas „stored“ funkcijos turi turėti RETURN teiginį!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1915,45 +1921,45 @@ msgstr "Apibrėžimas „stored“ funkcijos turi turėti RETURN teiginį!" msgid "Export" msgstr "Eksportuoti" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET redaktorius" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Stulpelio „%s“ reikšmės" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Reikšmės naujajam stulpeliui" -#: js/messages.php:340 +#: js/messages.php:341 #, fuzzy #| msgid "Enter each value in a separate field" msgid "Enter each value in a separate field." msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Pridėti %d reikšmę(-es)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Pastaba: Jei failas turi keletą lentelių jos bus sukombinuotos į vieną." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Slėpti užklausos laukelį" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Rodyti užklausos laukelį" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1967,7 +1973,7 @@ msgstr "Rodyti užklausos laukelį" msgid "Edit" msgstr "Redaguoti" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1979,96 +1985,96 @@ msgstr "Redaguoti" msgid "Delete" msgstr "Trinti" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d nėra galimas eilutės numeris." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Kintamasis" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Nepasirinkti įrašai" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Paieška duomenų bazėje" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Laisva atmintis" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Prisidėti" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Pridėti pirminį raktą" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Stulpeliui %s sukurtas PIRMINIS raktas." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Sekimo ataskaita" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2076,563 +2082,564 @@ msgstr "" msgid "End of step" msgstr "Eilutės galas" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Atlikta" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 #, fuzzy #| msgid "The following queries have been executed:" msgid "The following actions will be performed:" msgstr "Sekančios užklausos buvo įvykdytos:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Nepažymėjote duomenų bazės." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Išsaugoti" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Paieška" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names: " msgid "Column maximum:" msgstr "Stulpelių vardai: " -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names: " msgid "Column minimum:" msgstr "Stulpelių vardai: " -#: js/messages.php:402 +#: js/messages.php:403 #, fuzzy #| msgid "Maximum tables" msgid "Minimum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:403 +#: js/messages.php:404 #, fuzzy #| msgid "Maximum tables" msgid "Maximum value:" msgstr "Didžiausias skaičius lentelių" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slėpti paieškos kriterijų" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Pasirinkite du stulpelius" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Pasirinkite du skirtingus stulpelius" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Duomenų rodyklės dydis" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopijuoti" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Taškas" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Atkarpų seka" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Daugiakampis" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometrija" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Vidinis žiedas" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Išorinis žiedas:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Puslapio vardas" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select page" msgid "Save page" msgstr "Pasirinkite puslapį" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "Pasirinkite puslapį" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Tušti puslapiai" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select page" msgid "Delete page" msgstr "Pasirinkite puslapį" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienetas" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Pasirinkite puslapį redagavimui" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Add an option for column " msgid "Add an option for column \"%s\"." msgstr "Pridėti parinktį stulpeliui/skilčiai " -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Siųsti" -#: js/messages.php:482 +#: js/messages.php:483 #, fuzzy #| msgid "Press escape to cancel editing" msgid "Press escape to cancel editing." msgstr "Paspausti escape (klavišas Esc), kad išeiti iš redagavimo" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 #, fuzzy #| msgid "Drag to reorder" msgid "Drag to reorder." msgstr "Vilkite, kad pertvarkytumėte" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Paspauskite, kad (at)pažymėti" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Rodyti viską" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pirminė padėtis" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atšaukti" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Nutraukta" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Importuoti numatytąsias reikšmes" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pasirinkite lenteles" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Eiti pagal nuorodą" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Daugiau" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rodyti viską" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Nerodyti indeksų" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Logotipą rodyti kairiame rėmelyje" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Customize main frame" msgid "Link with main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Lentelės" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "Views" msgid "views" msgstr "Rodinys (Views)" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Procedūros" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "event" msgid "events" msgstr "įvykis" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Funkcijos" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2642,139 +2649,139 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "naujausias" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Sukurti rodinį" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverio jungtis" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverio jungtis" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Keisti nustatymus" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Rodyti atidarytas lenteles" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoruoti" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rodyti šią užklausą vėl" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Ar tikrai norite vykdyti „%s“?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Įvykdytos užklausos" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Lentelės komentarai" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Ankstesnis" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2782,149 +2789,149 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "Šiandien" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "sausio" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "vasario" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "kovo" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "balandžio" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Geg" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "birželio" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "liepos" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "rugsėjo" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "spalio" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "lapkričio" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Grd" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2932,205 +2939,205 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Sav." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Ne" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Valanda" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minutė" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekundės" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Naudokite teksto įvedimo lauką" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4127,7 +4134,7 @@ msgstr "Indeksai" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Veiksmas" @@ -4138,8 +4145,8 @@ msgid "Keyname" msgstr "Indekso pavadinimas" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4171,9 +4178,9 @@ msgstr "Palyginimas" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Komentaras" @@ -4188,14 +4195,14 @@ msgstr "Indeksas %s ištrintas." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Šalinti" @@ -4306,7 +4313,7 @@ msgstr "Sekimas" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4980,19 +4987,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Sukurti naują indeksą" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5000,7 +5013,7 @@ msgctxt "string types" msgid "String" msgstr "Eilutės baigiasi" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -5162,7 +5175,7 @@ msgstr "Naudokite šią reikšmę" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Eilutės" @@ -5247,7 +5260,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Pavadinimas" @@ -8765,7 +8778,8 @@ msgid "No data to display" msgstr "Nėra duomenų" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8810,37 +8824,38 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Nepasirinkti įrašai" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Pažymėti vartotojai sėkmingai pašalinti." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "Užklausos klaida" + +#: libraries/controllers/TableStructureController.class.php:963 #, fuzzy, php-format #| msgid "Table %1$s has been altered successfully." msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "Lentelė %1$s sėkmingai pakeista." -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "Užklausos klaida" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Redaguoti" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8851,20 +8866,20 @@ msgstr "Redaguoti" msgid "Index" msgstr "Indeksas" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fulltext" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10343,7 +10358,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Rodinys (Views)" @@ -10809,32 +10824,32 @@ msgid "Delete the table (DROP)" msgstr "Ištrinti lentelę (DROP)" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analizuoti" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Pažymėti" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimizuoti" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Perdaryti" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Taisyti" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10854,6 +10869,7 @@ msgid "Partition %s" msgstr "Skaidinys %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Pašalinti skaidymą" @@ -11074,7 +11090,7 @@ msgstr "Duomenų išvedimo nustatymai" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Sukurta duomenų kopija lentelei" @@ -11100,21 +11116,21 @@ msgstr "Paaiškinimas" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Sukurta duomenų struktūra lentelei" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Struktūra peržiūrėjimui" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Tik struktūra rodiniui" @@ -11220,7 +11236,7 @@ msgid "Database:" msgstr "Duomenų bazė" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11337,7 +11353,7 @@ msgid "Data creation options" msgstr "Objekto kūrimo nustatymai" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11423,7 +11439,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11499,25 +11515,25 @@ msgstr "Nenaudoti AUTO_INCREMENT nulinėms reikšmėms" msgid "AUTO_INCREMENT for table" msgstr "Pridėti AUTO_INCREMENT reikšmę" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPAI LENTELEI" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "SĄRYŠIAI LENTELEI" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Struktūra peržiūrėjimui" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "Klaida skaitant duomenis:" @@ -15795,7 +15811,7 @@ msgid "Pick from Central Columns" msgstr "Pašalinti stulpelį(-ius)" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15812,92 +15828,92 @@ msgstr "" msgid "after %s" msgstr "Po %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Partition %s" msgid "Partition by:" msgstr "Skaidinys %s" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Stulpelio „%s“ reikšmės" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Skaidinys %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Partition %s" msgid "Subpartition by:" msgstr "Skaidinys %s" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Partition %s" msgid "Subpartitions:" msgstr "Skaidinys %s" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Skaidinys %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Reikšmė" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Partition %s" msgid "Subpartition" msgstr "Skaidinys %s" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Varikliai" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Duomenų pradinis (home) katalogas" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Išsaugoti katalogą" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "Paveiktos eilutės:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Peržiūrėti" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Paieška" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -16753,7 +16769,7 @@ msgid "at beginning of table" msgstr "Lentelės pradžioje" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16761,26 +16777,45 @@ msgstr "Skaidinys %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Nėra aprašytų indeksų!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "Partition %s" msgid "Partitioned by:" msgstr "Skaidinys %s" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Eilutės ilgis" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Eilutės ilgis" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Partition %s" +msgid "Partition table" +msgstr "Skaidinys %s" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Pašalinti skaidymą" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "Keisti rodinį" diff --git a/po/lv.po b/po/lv.po index 5ed12c2b2a..eeef70a357 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-04-04 18:47+0200\n" "Last-Translator: Latvian TV \n" "Language-Team: Latvian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Saglabāt kā failu" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Atcelt" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Iezīmēt visu" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Formā trūkst vērtību!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "kaut viens no vārdiem" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number!" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a valid length!" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Pievienot jaunu lauku" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Labot indeksu" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Pievienot %s lauku(s) indeksam" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Servera versija" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Servera versija" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Lauki iekļauti iekš" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s column(s) to index" msgid "Please select column(s) for the index." msgstr "Pievienot %s lauku(s) indeksam" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "vaicājumā" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Affected rows:" msgid "Matched rows:" msgstr "Aizskartās rindas:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL vaicājums" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y Vērtība" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Hosts nav norādīts!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Lietotāja vārds nav norādīts!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Parole nav norādīta!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Dzēš izvēlētos lietotājus" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Aizvērt" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "Tabula %s tika izdzēsta" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profils tika modificēts." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Ieraksts tika dzēsts" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Cits" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Savienojumi / Procesi" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1199,161 +1205,161 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Vaicājuma kešatmiņas efektivitāte" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Pieprasījumu kešatmiņas lietojums" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Izmantotā pieprasījumu kešatmiņa" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistēmas CPU noslodze" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Sistēmas atmiņa" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Vidējais noslogojums" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Kopējā atmiņa" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Brīvā atmiņa" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Izmantotā atmiņa" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Kopā" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Diska vietas lietošana" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Nosūtītie baiti" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Saņemtie baiti" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Konekcijas" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Procesi" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "baiti" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabula(s)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Jautājumi" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Datu apmaiņa" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Uzstādījumi" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1365,47 +1371,47 @@ msgstr "" msgid "None" msgstr "Nav" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1413,139 +1419,139 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Saglabāt log_output kā %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Ieslēgt %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Izslēgt %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Vaicājums ilga %01.4f s" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Pašreizējie uzstādījumi" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Importēt failus" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Vienība" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analizē žurnālus" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Atcelt pieprasījumu" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Pāriet uz žurnālu tabulu" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Dati netika atrasti" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analizē…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Izskaidrot izvadu" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1553,7 +1559,7 @@ msgstr "Izskaidrot izvadu" msgid "Status" msgstr "Statuss" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1563,88 +1569,88 @@ msgstr "Statuss" msgid "Time" msgstr "Laiks" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Kopējais laiks:" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL rezultāts" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Tabula" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Diagramma" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Žurnālu tabulas filtrēšanas opcijas" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtrs" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Rindu skaits vienā lapā" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Kopā:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Ielādē žurnālus" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Pārlādēt lapu" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Aizskartās rindas:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1654,65 +1660,65 @@ msgstr "" msgid "Import" msgstr "Imports" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the file you want to import" msgid "Please select the file you want to import." msgstr "Lūdzu izvēlies importējamo failu" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analizēt pieprasījumu" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problēma" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Ieteikums" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Noteikuma detaļas" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentācija" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Tests" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1723,70 +1729,70 @@ msgstr "" msgid "Cancel" msgstr "Atcelt" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "Change settings" msgid "Page-related settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Ielādē…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Apstrādā pieprasījumu" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy msgid "Request failed!!" msgstr "Vaicājuma tips" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Kļūdas kods: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Kļūdas teksts: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Datubāze nav izvēlēta." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Procesi" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Pievienot %s lauku(s)" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1796,63 +1802,63 @@ msgstr "Pievienot %s lauku(s)" msgid "OK" msgstr "Labi" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Pārsauc datubāzes" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopē datubāzi" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Maina kodējumu" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Nepārbaudīt ārējās atslēgas" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Meklē" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Rādīt meklēšanas rezultātus" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Apskata" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Dzēš" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1869,42 +1875,42 @@ msgstr "" msgid "Export" msgstr "Eksports" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Tabulas %s vērtības" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Pievienot jaunu lietotāju" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Slēpt pieprasījumu logu" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Rādīt pieprasījumu logu" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1918,7 +1924,7 @@ msgstr "Rādīt pieprasījumu logu" msgid "Edit" msgstr "Labot" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1930,96 +1936,96 @@ msgstr "Labot" msgid "Delete" msgstr "Dzēst" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Mainīgais" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No column selected." msgid "Column selector" msgstr "Nav izvēlēta kolonna." -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Meklēt datubāzē" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 #, fuzzy #| msgid "Free memory" msgid "See more" msgstr "Brīvā atmiņa" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Contribute" msgid "Continue" msgstr "Piedalies" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Primārā atslēga pievienota uz lauka %s." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Labot" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2027,280 +2033,281 @@ msgstr "" msgid "End of step" msgstr "Tabulas beigās" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Datubāze nav izvēlēta." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Saglabāt" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Meklēt" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Kolonnu nosaukumi" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "Hide search criteria" msgid "Hide find and replace criteria" msgstr "Slēpt meklēšanas kritērijus" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Show search criteria" msgid "Show find and replace criteria" msgstr "Rādīt meklēšanas kritērijus" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Izvēlies 2 kolonnas" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Izvēlies 2 dažādas kolonnas" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Satura rādītājs" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopēt" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punkts" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Līnija" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Ģeometrija" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Iekšējais aplis" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ārējais aplis:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lapas numurs:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Iezīmēt visu" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Iezīmēt visu" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2308,272 +2315,272 @@ msgstr "Iezīmēt visu" msgid "Open page" msgstr "Aizņem" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Iezīmēt visu" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 #, fuzzy #| msgid "Unit" msgid "Untitled" msgstr "Vienība" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Izvēlieties lapu redigēšanai" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid page name" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Relāciju shēma" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Kolonnas vērtība \"%s\"" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Nosūtīt" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Rādīt visu" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Oriģinālā pozīcija" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atcelt" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Pārtraukts" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Importēt failus" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izvēlieties tabulas" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Nav datubāzu" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rādīt visu" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Pievienot jaunu lauku" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Rādīt režģi" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy msgid "Link with main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy msgid "Unlink from main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Tabulas" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy msgid "views" msgstr "Lauki" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy msgid "procedures" msgstr "Procesi" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy msgid "events" msgstr "Nosūtīts" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "Funkcija" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2581,137 +2588,137 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "Servera ID" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "Servera ID" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "Rādīt tabulas" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignorēt" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rādīt šo vaicājumu šeit atkal" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to delete user group \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Vai Jūs tiešām vēlaties dzēst lietotāju grupu \"%s\"?" -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL vaicājums" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentārs tabulai" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Iepriekšējie" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2719,96 +2726,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mai" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2816,78 +2823,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dec" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2895,223 +2902,223 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nav" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundē" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Lietot teksta lauku" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid credit card number" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a value less than or equal to {0}" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4102,7 +4109,7 @@ msgstr "Indeksi" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Darbība" @@ -4113,8 +4120,8 @@ msgid "Keyname" msgstr "Atslēgas nosaukums" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4146,9 +4153,9 @@ msgstr "Izkārtojumi" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 #, fuzzy msgid "Comment" msgstr "Komentāri" @@ -4164,14 +4171,14 @@ msgstr "Indekss %s tika izdzēsts." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Likvidēt" @@ -4281,7 +4288,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4947,19 +4954,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Izveidot jaunu indeksu" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -4967,7 +4980,7 @@ msgctxt "string types" msgid "String" msgstr "Rindas atdalītas ar" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5132,7 +5145,7 @@ msgstr "Lietot šo vērtību" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rindas" @@ -5219,7 +5232,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nosaukums" @@ -8244,7 +8257,8 @@ msgid "No data to display" msgstr "Dati netika atrasti" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8288,36 +8302,37 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "Nav izvēlēta kolonna." -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Vaicājuma tips" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Labot" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8328,20 +8343,20 @@ msgstr "Labot" msgid "Index" msgstr "Indekss" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Pilni teksti" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy msgid "Distinct values" msgstr "Pārlūkot ārējās vērtības" @@ -9809,7 +9824,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10278,34 +10293,34 @@ msgid "Delete the table (DROP)" msgstr "Nav datubāzu" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Check" msgstr "Čehu" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 #, fuzzy msgid "Repair" msgstr "Restaurēt tabulu" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10326,6 +10341,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10556,7 +10572,7 @@ msgstr "Datubāzu eksporta opcijas" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Dati tabulai" @@ -10583,14 +10599,14 @@ msgstr "Apraksts" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tabulas struktūra tabulai" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10598,7 +10614,7 @@ msgstr "Tikai struktūra" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10716,7 +10732,7 @@ msgid "Database:" msgstr "Datubāze" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10831,7 +10847,7 @@ msgid "Data creation options" msgstr "Transformācijas opcijas" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10901,7 +10917,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10976,24 +10992,24 @@ msgstr "Pievienot AUTO_INCREMENT vērtību" msgid "AUTO_INCREMENT for table" msgstr "Pievienot AUTO_INCREMENT vērtību" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TIPI TABULAI" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELĀCIJAS TABULAI" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Tikai struktūra" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15210,7 +15226,7 @@ msgid "Pick from Central Columns" msgstr "Noņemt diagrammu" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15227,90 +15243,90 @@ msgstr "" msgid "after %s" msgstr "Pēc %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Position" msgid "Partition by:" msgstr "Pozīcija" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Tabulas %s vērtības" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Position" msgid "Partitions:" msgstr "Pozīcija" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Position" msgid "Subpartition by:" msgstr "Pozīcija" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Position" msgid "Subpartitions:" msgstr "Pozīcija" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Position" msgid "Partition" msgstr "Pozīcija" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Vērtība" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Position" msgid "Subpartition" msgstr "Pozīcija" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "Datu vārdnīca" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "Indeksa tips :" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Affected rows:" msgid "Max rows" msgstr "Aizskartās rindas:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Apskatīt" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Meklēt" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16181,32 +16197,51 @@ msgid "at beginning of table" msgstr "Tabulas sākumā" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Position" msgid "Partitions" msgstr "Pozīcija" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Nav definēti indeksi!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Rindas garums" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Rindas garums" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Position" +msgid "Partition table" +msgstr "Pozīcija" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Add new field" +msgid "Edit partitioning" +msgstr "Pievienot jaunu lauku" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/mk.po b/po/mk.po index cc82b0aeb8..cd1623956d 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-11-05 10:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Сочувај како податотека" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Поништи" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "избери се" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Недостасува вредност во образецот!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "барем еден од зборовите" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Додади ново поле" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Ажурирање на следниот запис" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "Додади %s полиња" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Верзија на серверот" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Верзија на серверот" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Полињата се раздвоени со" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "Додади %s полиња" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "You have to add at least one column." msgstr "Морате да изберете барем една колона за приказ" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "во упитот" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Заглавени страници" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL упит" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Вредност" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Името на host-от е празно!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Не е внесен назив на корисник!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Лозинка е празна!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:125 +#: js/messages.php:126 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Избриши ги селектираните корисници" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "Табелата %s е избришана" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профилот е променет." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Записот е избришан" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Конекции" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1245,177 +1251,177 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy msgid "Query cache efficiency" msgstr "Вид на упит" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy msgid "Query cache usage" msgstr "Вид на упит" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy msgid "Query cache used" msgstr "Вид на упит" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Големина" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Вкупно" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Бафер" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Вкупно" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Големина" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Слободни страници" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Примено" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Конекции" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 #, fuzzy msgid "Processes" msgstr "Листа на процеси" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "бајти" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s табела" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Персиски" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Сообраќај" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Општи особини на релациите" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1427,47 +1433,47 @@ msgstr "" msgid "None" msgstr "нема" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1475,154 +1481,154 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Сочувај како податотека" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Овозможено" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Оневозможено" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "време на извршување на упитот %01.4f секунди" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Општи особини на релациите" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Општи особини на релациите" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Import files" msgid "Chart title" msgstr "Увоз на податотека" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "Локален" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Барања за читање" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "Базата на податоци не постои" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Базата на податоци не постои" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Објасни SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1630,7 +1636,7 @@ msgstr "Објасни SQL" msgid "Status" msgstr "Статус" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1640,99 +1646,99 @@ msgstr "Статус" msgid "Time" msgstr "Време" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Вкупно" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "SQL резултат" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Табела" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy #| msgid "Charset" msgid "Chart" msgstr "Кодна страна" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Опции на табелата" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Број на записи на страница" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Вкупно" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "Локален" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Rename database to" msgid "Reload page" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1743,65 +1749,65 @@ msgstr "" msgid "Import" msgstr "Извоз" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Ажурирај" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Документација" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Документација" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1812,69 +1818,69 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Општи особини на релациите" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "Локален" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy msgid "Processing request" msgstr "Листа на процеси" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy msgid "Request failed!!" msgstr "Вид на упит" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy msgid "Error in processing request" msgstr "Листа на процеси" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Inside table(s):" msgid "Dropping column" msgstr "во табела(и):" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "Додади %s полиња" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1884,71 +1890,71 @@ msgstr "Додади %s полиња" msgid "OK" msgstr "ОК" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Преименувај ја базата на податоци во" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Копирај ја базата на податоци во" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кодна страна" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Исклучи проверка на надворешни клучеви" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Пребарување" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "SQL упит" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "SQL упит" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Преглед" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "Бришам %s" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1965,45 +1971,45 @@ msgstr "" msgid "Export" msgstr "Извоз" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Број на записи на страница" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Додади нов корисник" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "SQL упит" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "SQL упит" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -2017,7 +2023,7 @@ msgstr "SQL упит" msgid "Edit" msgstr "Промени" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2029,94 +2035,94 @@ msgstr "Промени" msgid "Delete" msgstr "избриши" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Променлива" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Нема селектирани записи" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Пребарување низ базата на податоци" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибути" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Примарниот клуч %s е додаден." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Change" msgid "Taking you to next step…" msgstr "Промени" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2124,550 +2130,551 @@ msgstr "" msgid "End of step" msgstr "на крајот од табелата" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Додади привилегии на следната табела" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "Не е избрана ни една база на податоци." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Сочувај" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "SQL упит" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Пребарување" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Имиња на колони" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Имиња на колони" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "SQL упит" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "SQL упит" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Додади/избриши колона" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Големина на покажувачите на податоци" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Копирај" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 #, fuzzy #| msgid "Lines terminated by" msgid "Linestring" msgstr "Линиите се завршуваат со" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Add a new User" msgid "Inner ring" msgstr "Додади нов корисник" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Lines terminated by" msgid "Outer ring" msgstr "Линиите се завршуваат со" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број на страници:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "избери се" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "избери се" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Слободни страници" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "избери се" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Изберете страница која менувате" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Релациона шема" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Измените се сочувани" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Add an option for column \"%s\"." msgstr "Број на записи на страница" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Испрати" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имиња на колони" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "прикажи ги сите" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оргинална позиција" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Прекинато" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Увоз на податотека" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Избери табели" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Базата на податоци не постои" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имиња на колони" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "прикажи ги сите" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додади ново поле" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежа" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy msgid "Link with main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy msgid "Unlink from main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Табели" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Поглед" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy msgid "procedures" msgstr "Листа на процеси" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy msgid "events" msgstr "Пратено" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "Функција" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2675,136 +2682,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "ID на серверот" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "ID на серверот" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Општи особини на релациите" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "Прикажи табели" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнорирај" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи го повторно овој упит" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Дали навистина сакате да " -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL упит" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментар на табелата" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2812,96 +2819,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "мај" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2909,78 +2916,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "дек" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2988,199 +2995,199 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "во секунда" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поле" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Изберете база на податоци" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Изберете страница која менувате" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4173,7 +4180,7 @@ msgstr "Клучеви" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Акција" @@ -4184,8 +4191,8 @@ msgid "Keyname" msgstr "Име на клуч" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4217,9 +4224,9 @@ msgstr "Подредување" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 #, fuzzy msgid "Comment" msgstr "Коментари" @@ -4235,14 +4242,14 @@ msgstr "Клучот %s е избиршан." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Бриши" @@ -4352,7 +4359,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -5019,19 +5026,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Креирај нов клуч" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5039,7 +5052,7 @@ msgctxt "string types" msgid "String" msgstr "Линиите се завршуваат со" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5204,7 +5217,7 @@ msgstr "Користи ја оваа вредност" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Записи" @@ -5291,7 +5304,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Име" @@ -8330,7 +8343,8 @@ msgid "No data to display" msgstr "Базата на податоци не постои" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, fuzzy, php-format msgid "Table %1$s has been altered successfully." @@ -8372,38 +8386,39 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Нема селектирани записи" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Изабраните корисници успешно се избришани." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Изабраните корисници успешно се избришани." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Вид на упит" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Изабраните корисници успешно се избришани." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Промени" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8414,20 +8429,20 @@ msgstr "Промени" msgid "Index" msgstr "Клуч" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Текст клуч" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy msgid "Distinct values" msgstr "Прегледни ги надворешните вредности" @@ -9915,7 +9930,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10385,34 +10400,34 @@ msgid "Delete the table (DROP)" msgstr "Базата на податоци не постои" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 #, fuzzy msgid "Check" msgstr "Чешки" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 #, fuzzy msgid "Repair" msgstr "Поправка на табелата" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10432,6 +10447,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10663,7 +10679,7 @@ msgstr "Опции за извоз на бази на податоци" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Приказ на податоци од табелата" @@ -10690,14 +10706,14 @@ msgstr "Опис" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Структура на табелата" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10705,7 +10721,7 @@ msgstr "Само структура" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10823,7 +10839,7 @@ msgid "Database:" msgstr "База на податоци" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10938,7 +10954,7 @@ msgid "Data creation options" msgstr "Опции на трансформацијата" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11008,7 +11024,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11089,24 +11105,24 @@ msgstr "Додади AUTO_INCREMENT вредност" msgid "AUTO_INCREMENT for table" msgstr "Додади AUTO_INCREMENT вредност" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME ТИПОВИ ЗА ТАБЕЛА" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "РЕЛАЦИИ НА ТАБЕЛИТЕ" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Само структура" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15354,7 +15370,7 @@ msgid "Pick from Central Columns" msgstr "Избриши ја базата на податоци." #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15371,91 +15387,91 @@ msgstr "" msgid "after %s" msgstr "после полето %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Position" msgid "Partition by:" msgstr "Позиција" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of rows per page" msgid "Expression or column list" msgstr "Број на записи на страница" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Position" msgid "Partitions:" msgstr "Позиција" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Position" msgid "Subpartition by:" msgstr "Позиција" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Position" msgid "Subpartitions:" msgstr "Позиција" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Position" msgid "Partition" msgstr "Позиција" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Вредност" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Position" msgid "Subpartition" msgstr "Позиција" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Складишта" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Основен директориум на податоците" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy msgid "Index directory" msgstr "Основен директориум на податоците" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Latched pages" msgid "Max rows" msgstr "Заглавени страници" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Преглед" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Пребарување" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16325,32 +16341,51 @@ msgid "at beginning of table" msgstr "на почетокот од табелата" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Position" msgid "Partitions" msgstr "Позиција" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Клучот не е дефиниран!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Должина на запис" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Должина на запис" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Position" +msgid "Partition table" +msgstr "Позиција" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Add new field" +msgid "Edit partitioning" +msgstr "Додади ново поле" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/ml.po b/po/ml.po index bbfbcaecdc..6317a65d13 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-02-27 10:56+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "Update Query" msgid "Simulate query" msgstr "അഭ്യര്‍ത്ഥന നവീകറിക്കുക" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Sort" msgid "Matched rows:" msgstr "തരംതിരിക്കുക" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Use this value" msgid "Y values" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "Database %1$s has been created." msgid "Template was deleted." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "" -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1111,126 +1115,126 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table" #| msgid_plural "%s tables" @@ -1238,30 +1242,30 @@ msgid "%d table(s)" msgstr "%s പട്ടിക" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1273,47 +1277,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1321,136 +1325,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1458,7 +1462,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1468,84 +1472,84 @@ msgstr "" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "പട്ടിക" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1555,59 +1559,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1618,63 +1622,63 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Add/Delete columns" msgid "Dropping column" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add/Delete columns" msgid "Adding primary key" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1684,59 +1688,59 @@ msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1753,42 +1757,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1802,7 +1806,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1814,572 +1818,573 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Use this value" msgid "Search this list" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Column" msgid "Continue" msgstr "നിര" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column" msgid "Column maximum:" msgstr "നിര" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column" msgid "Column minimum:" msgstr "നിര" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Table" msgid "tables" msgstr "പട്ടിക" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2387,443 +2392,443 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3724,7 +3729,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "" @@ -3735,8 +3740,8 @@ msgid "Keyname" msgstr "കീനാമം" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3768,9 +3773,9 @@ msgstr "നിബന്ധന" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3785,14 +3790,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "" @@ -3902,7 +3907,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4535,23 +4540,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4703,7 +4714,7 @@ msgstr "ഈ വില ഉപയോഗിക്കൂ" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "വരികൾ" @@ -4782,7 +4793,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7627,7 +7638,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7665,34 +7677,35 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7703,20 +7716,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Use this value" msgid "Distinct values" @@ -9082,7 +9095,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9536,32 +9549,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9579,6 +9592,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9783,7 +9797,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9807,21 +9821,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9915,7 +9929,7 @@ msgid "Database:" msgstr "വിവരശേഖര അഭിപ്രായം: " #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -10012,7 +10026,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10082,7 +10096,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10153,24 +10167,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -14026,7 +14040,7 @@ msgid "Pick from Central Columns" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -14040,78 +14054,78 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Creation" msgid "Partitions:" msgstr "സൃഷ്‌ടി" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Description" msgid "Partition" msgstr "വിവരണം" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Use this value" msgid "Values" msgstr "ഈ വില ഉപയോഗിക്കൂ" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data only" msgid "Data directory" msgstr "വിവരം മാത്രം" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Sort" msgid "Max rows" msgstr "തരംതിരിക്കുക" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "Rows" msgid "Min rows" msgstr "വരികൾ" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Database comment" msgid "Table space" msgstr "വിവരശേഖര അഭിപ്രായം: " -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14844,28 +14858,45 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Data only" msgid "Data length" msgstr "വിവരം മാത്രം" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Description" +msgid "Partition table" +msgstr "വിവരണം" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Description" +msgid "Edit partitioning" +msgstr "വിവരണം" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/mn.po b/po/mn.po index 4e9e4c9ca7..201c0cfe9f 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2014-11-05 10:28+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Илгээх" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Да.эхлэх" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Бүгдийг сонгох" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Форм дахь утгыг орхисон!" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "Үгүүдийн ядаж нэгээр" -#: js/messages.php:95 +#: js/messages.php:96 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number!" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:96 +#: js/messages.php:97 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid length!" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Add new field" msgid "Add index" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit next row" msgid "Edit index" msgstr "Дараагийн мөрийг засах" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format #| msgid "Add %s field(s)" msgid "Add %s column(s) to index" msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Холбоо үүсгэх" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Холбоо үүсгэх" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Талбарыг хаасан" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy #| msgid "Add %s field(s)" msgid "Please select column(s) for the index." msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." msgstr "Та багадаа нэг талбар нэм." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "асуултад" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Latched pages" msgid "Matched rows:" msgstr "Latched хуудсууд" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "SQL-асуулт" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Утга" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Хостын нэр хоосон!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Хэрэглэгчийн нэр хоосон!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Нууц үг хоосон байна!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:125 +#: js/messages.php:126 #, fuzzy #| msgid "Remove selected users" msgid "Removing Selected Users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "%s table(s)" msgid "Template was created." msgstr "%s хүснэгт(үүд)" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Профиль шинэчлэгдлээ." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Мөр устгагдсан" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Холболт" -#: js/messages.php:144 +#: js/messages.php:145 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Local monitor configuration incompatible!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1249,180 +1255,180 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy #| msgid "Query cache" msgid "Query cache usage" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy #| msgid "Query cache" msgid "Query cache used" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Ашиглалт" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Нийт" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 #, fuzzy #| msgid "Buffer Pool" msgid "Buffered memory" msgstr "Буффер Pool" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Нийт" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Ашиглалтын зай" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free pages" msgid "Free swap" msgstr "Чөлөөт хуудсууд" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "Ирсэн" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Холболт" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Процессууд" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Байт" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "кБ" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s хүснэгт(үүд)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy #| msgid "Relations" msgid "Questions" msgstr "Хамаарал" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Гуйвуулга" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1434,47 +1440,47 @@ msgstr "" msgid "None" msgstr "Байхгүй" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1482,156 +1488,156 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Илгээх" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Нээлттэй" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disabled" msgid "Disable %s" msgstr "Хаагдсан" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, fuzzy, php-format #| msgid "Query took %01.4f sec" msgid "Set long_query_time to %d seconds." msgstr "Асуулт нь %01.4f сек авлаа" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Тайлангийн гарчиг" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy #| msgid "Reload privileges" msgid "Analysing logs" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 #, fuzzy #| msgid "Read requests" msgid "Cancel request" msgstr "Унших гуйлт" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy #| msgid "No databases" msgid "Jump to Log table" msgstr "ӨС байхгүй" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "ӨС байхгүй" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "SQL тайлбар" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1639,7 +1645,7 @@ msgstr "SQL тайлбар" msgid "Status" msgstr "Статус" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1649,99 +1655,99 @@ msgstr "Статус" msgid "Time" msgstr "Цаг" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Нийт" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "Query results operations" msgid "Profiling results" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Хүснэгт " -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy msgid "Chart" msgstr "Кодлолууд" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy #| msgid "Table options" msgid "Log table filter options" msgstr "Хүснэгтийн сонголтууд" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of fields" msgid "Sum of grouped rows:" msgstr "Талбаруудын тоо" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Нийт" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy #| msgid "Reload privileges" msgid "Loading logs" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy #| msgid "Reload" msgid "Reload page" msgstr "Да.дууд" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1751,69 +1757,69 @@ msgstr "" msgid "Import" msgstr "Оруулах" -#: js/messages.php:271 +#: js/messages.php:272 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Import monitor configuration" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: js/messages.php:272 +#: js/messages.php:273 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import." msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Update асуулт" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Баримт" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Баримт" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1824,73 +1830,73 @@ msgstr "" msgid "Cancel" msgstr "Болих" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy #| msgid "Reload privileges" msgid "Loading…" msgstr "Онцгой эрхүүдийг дахин дуудах" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Процессууд" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Query cache" msgid "Request failed!!" msgstr "Асуудлын нөөцлөл" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процессууд" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "ӨС сонгогдоогүй." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Procedure" msgid "Dropping column" msgstr "Процедурүүд" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add %s field(s)" msgid "Adding primary key" msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1900,73 +1906,73 @@ msgstr "%s талбар(ууд) нэмэх" msgid "OK" msgstr "Бэлэн" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Rename database to" msgid "Renaming databases" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copy database to" msgid "Copying database" msgstr "Өгөгдлийн сан хуулах нь" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Charset" msgid "Changing charset" msgstr "Кодлол" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 #, fuzzy #| msgid "Disable foreign key checks" msgid "Enable foreign key checks" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Хайх" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy #| msgid "in query" msgid "Hide search results" msgstr "асуултад" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy #| msgid "Showing SQL query" msgid "Show search results" msgstr "SQL асуудал харуулах" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Хөтлөх" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Deleting %s" msgid "Deleting" msgstr "%s-г устгаж байна" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1983,48 +1989,48 @@ msgstr "" msgid "Export" msgstr "Гаргах" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of fields" msgid "Values for column %s" msgstr "Талбаруудын тоо" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format #| msgid "Add a new User" msgid "Add %d value(s)" msgstr "Шинэ хэрэглэгч нэмэх" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy #| msgid "in query" msgid "Hide query box" msgstr "асуултад" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy #| msgid "Showing SQL query" msgid "Show query box" msgstr "SQL асуудал харуулах" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -2038,7 +2044,7 @@ msgstr "SQL асуудал харуулах" msgid "Edit" msgstr "Засах" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -2050,94 +2056,94 @@ msgstr "Засах" msgid "Delete" msgstr "Устгах" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Хувьсагч" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "No rows selected" msgid "Column selector" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Өгөгдлийн санд хайх" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Атрибутууд" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "%s-д үндсэн түлхүүр нэмэгдлээ" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Хөөлтын илтгэл" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2145,565 +2151,566 @@ msgstr "" msgid "End of step" msgstr "Хүснэгтийн төгсгөлд" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 #, fuzzy #| msgid "No databases selected." msgid "No partial dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Add privileges on the following table" msgid "Create the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 #, fuzzy #| msgid "No databases selected." msgid "No dependencies selected!" msgstr "ӨС сонгогдоогүй." -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Хадгалах" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy #| msgid "in query" msgid "Hide search criteria" msgstr "асуултад" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy #| msgid "Showing SQL query" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Хайх" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Баганын нэрс" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Баганын нэрс" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy #| msgid "in query" msgid "Hide find and replace criteria" msgstr "асуултад" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy #| msgid "Showing SQL query" msgid "Show find and replace criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Багана нэмэх/устгах" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Data pointer size" msgid "Data point content" msgstr "Өгөгдөл заагчийн хэмжээ" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Хуулах" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Цэг" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Шугам" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Олон өнцөгт" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Геометр" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Дотоод тойрог" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Гадаад тойрог" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:457 +#: js/messages.php:458 #, fuzzy #| msgid "Please select the primary key or a unique key" msgid "Please select the primary key or a unique key!" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Хуудасны дугаар:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Бүгдийг сонгох" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Бүгдийг сонгох" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgid "Free pages" msgid "Open page" msgstr "Чөлөөт хуудсууд" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Бүгдийг сонгох" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Засах Хуудсаа сонго" -#: js/messages.php:470 +#: js/messages.php:471 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid page name" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Relational schema" msgid "Export relational schema" msgstr "Хамааралтай схем" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "\"%s\" баганын утга" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Илгээ" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Баганын нэрс" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Бүгдийг харах" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Жинхэнэ байрлал" -#: js/messages.php:499 +#: js/messages.php:500 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Болих" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Таслагдсан" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Файл оруулах" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Хүснэгтүүд сонго" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Хүснэгт алга" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Баганын нэрс" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бүгдийг харах" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Тор харуулах" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Use text field" msgid "Link with main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Хүснэгт" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy #| msgid "View" msgid "views" msgstr "Харц" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy #| msgid "Procedures" msgid "procedures" msgstr "Процедурүүд" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy #| msgid "Event" msgid "events" msgstr "Үзэгдэл" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Functions" msgid "functions" msgstr "Функцүүд" -#: js/messages.php:545 +#: js/messages.php:546 #, fuzzy #| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2711,139 +2718,139 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Үл тоох" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Уг асуултыг энд дахин харуулах" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Та үнэхээр " -#: js/messages.php:600 +#: js/messages.php:601 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:601 +#: js/messages.php:602 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: js/messages.php:602 +#: js/messages.php:603 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:603 +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Хүснэгтийн тайлбар" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "асуултад" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Өмнөх" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2851,96 +2858,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Хоёртын " -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "5-р" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2948,78 +2955,78 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "12р" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3027,223 +3034,223 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Байхгүй" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундэд" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:777 +#: js/messages.php:778 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:778 +#: js/messages.php:779 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:780 +#: js/messages.php:781 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:781 +#: js/messages.php:782 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:782 +#: js/messages.php:783 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:783 +#: js/messages.php:784 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:784 +#: js/messages.php:785 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4235,7 +4242,7 @@ msgstr "Индексүүд" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Үйлдэл" @@ -4246,8 +4253,8 @@ msgid "Keyname" msgstr "Түлхүүрийн нэр" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4279,9 +4286,9 @@ msgstr "Жишилт" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -4296,14 +4303,14 @@ msgstr "Индекс %s нь устгагдсан." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Устгах" @@ -4413,7 +4420,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -5084,19 +5091,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Шинэ индекс үүсгэх" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -5104,7 +5117,7 @@ msgctxt "string types" msgid "String" msgstr "Шугамыг төгсгөгч" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5269,7 +5282,7 @@ msgstr "Уг утгыг хэрэглэх" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Мөрүүд" @@ -5358,7 +5371,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Нэр" @@ -8398,7 +8411,8 @@ msgid "No data to display" msgstr "ӨС байхгүй" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8442,39 +8456,40 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Сонгогдсон мөргүй" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "Сонгогдсон хэрэглэгч устгагдлаа." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %s has been moved to %s." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Хүснэгт %s нь %s руу зөөгдөв." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Асуултын төрөл" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %s has been moved to %s." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Хүснэгт %s нь %s руу зөөгдөв." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Солих" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8485,20 +8500,20 @@ msgstr "Солих" msgid "Index" msgstr "Индекс" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Бүтэнбичвэр" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10008,7 +10023,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 #, fuzzy #| msgid "View" msgid "Views" @@ -10484,32 +10499,32 @@ msgid "Delete the table (DROP)" msgstr "Өгөгдлийн сан хуулах нь" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10527,6 +10542,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10757,7 +10773,7 @@ msgstr "ӨС гаргах сонголтууд" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Хүснэгтийн өгөгдлийг устгах" @@ -10783,21 +10799,21 @@ msgstr "Тайлбар" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Хүснэгтийн бүтэц" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Харах бүтэц" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10915,7 +10931,7 @@ msgid "Database:" msgstr "ӨС" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11033,7 +11049,7 @@ msgid "Data creation options" msgstr "Өөрчлөлийн сонголтууд" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11103,7 +11119,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11184,25 +11200,25 @@ msgstr "AUTO_INCREMENT утга нэмэх" msgid "AUTO_INCREMENT for table" msgstr "AUTO_INCREMENT утга нэмэх" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "Хүснэгтийн MIME-төрлүүд" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "Хүснэгтийн хамаарал" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Харах бүтэц" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15497,7 +15513,7 @@ msgid "Pick from Central Columns" msgstr "Өгөгдлийн санг д.нэрлэх нь" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15514,92 +15530,92 @@ msgstr "" msgid "after %s" msgstr "%s-ы дараа" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "Position" msgid "Partition by:" msgstr "Байрлал" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of fields" msgid "Expression or column list" msgstr "Талбаруудын тоо" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Position" msgid "Partitions:" msgstr "Байрлал" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "Position" msgid "Subpartition by:" msgstr "Байрлал" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "Position" msgid "Subpartitions:" msgstr "Байрлал" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Position" msgid "Partition" msgstr "Байрлал" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Утга" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "Position" msgid "Subpartition" msgstr "Байрлал" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Хөдөлгүүрүүд" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Өгөгдлийн үндсэн хавтас" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Data home directory" msgid "Index directory" msgstr "Өгөгдлийн үндсэн хавтас" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Latched pages" msgid "Max rows" msgstr "Latched хуудсууд" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Хөтлөх" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Хайх" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -16473,32 +16489,51 @@ msgid "at beginning of table" msgstr "Хүснэгтийн эхэнд" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Position" msgid "Partitions" msgstr "Байрлал" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Индекс тодорхойлогдоогүй!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Мөрийн урт" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Мөрийн урт" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Position" +msgid "Partition table" +msgstr "Байрлал" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Add new field" +msgid "Edit partitioning" +msgstr "Шинэ талбар нэмэх" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/ms.po b/po/ms.po index 105550a334..412624c568 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-17 15:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save as file" msgid "Save & close" msgstr "Simpan sebagai fail" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Ulangtetap" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "Sila pilih pangkalan data" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Kehilangan nilai pada borang! !" -#: js/messages.php:94 +#: js/messages.php:95 #, fuzzy #| msgid "at least one of the words" msgid "Select at least one of the options!" msgstr "sekurang-kurangnya satu perkataan" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Index" msgid "Add index" msgstr "Indeks" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Index" msgid "Edit index" msgstr "Indeks" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, fuzzy, php-format msgid "Add %s column(s) to index" msgstr "Tambah medan baru" -#: js/messages.php:100 +#: js/messages.php:101 #, fuzzy #| msgid "Create routine" msgid "Create single-column index" msgstr "Versi Pelayan" -#: js/messages.php:101 +#: js/messages.php:102 #, fuzzy #| msgid "Create routine" msgid "Create composite index" msgstr "Versi Pelayan" -#: js/messages.php:102 +#: js/messages.php:103 #, fuzzy #| msgid "Fields enclosed by" msgid "Composite with:" msgstr "Medan disertai oleh" -#: js/messages.php:103 +#: js/messages.php:104 #, fuzzy msgid "Please select column(s) for the index." msgstr "Tambah medan baru" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 #, 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" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 #, fuzzy #| msgid "in query" msgid "Simulate query" msgstr "pada kueri" -#: js/messages.php:113 +#: js/messages.php:114 #, fuzzy #| msgid "Start" msgid "Matched rows:" msgstr "Sab" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 #, fuzzy #| msgid "SQL query" msgid "SQL query:" msgstr "kueri-SQL" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Value" msgid "Y values" msgstr "Nilai" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Nama hos adalah kosong!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Kata Pengenalan kosong!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Katalaluan adalah kosong!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy msgid "Template was created." msgstr "Jadual %s telah digugurkan" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profil telah dikemaskini." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Baris telah dipadam" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "." -#: js/messages.php:141 +#: js/messages.php:142 #, fuzzy #| msgid "Connections" msgid "Connections / Processes" msgstr "Hubungan" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1210,172 +1216,172 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 #, fuzzy msgid "Query cache efficiency" msgstr "Jenis Kueri" -#: js/messages.php:148 +#: js/messages.php:149 #, fuzzy msgid "Query cache usage" msgstr "Jenis Kueri" -#: js/messages.php:149 +#: js/messages.php:150 #, fuzzy msgid "Query cache used" msgstr "Jenis Kueri" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "CPU Usage" msgid "System CPU usage" msgstr "Penggunaan" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 #, fuzzy #| msgid "Total" msgid "Total memory" msgstr "Jumlah" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total" msgid "Total swap" msgstr "Jumlah" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "memcached usage" msgid "Cached swap" msgstr "Penggunaan ruang" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 #, fuzzy #| msgid "Received" msgid "Bytes received" msgstr "DiTerima" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Hubungan" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Proses-proses" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EB" -#: js/messages.php:180 +#: js/messages.php:181 #, fuzzy, php-format #| msgid "%s table(s)" msgid "%d table(s)" msgstr "%s jadual" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 #, fuzzy msgid "Questions" msgstr "Operasi" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Kesibukan" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 #, fuzzy #| msgid "General relation features" msgid "Settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1387,47 +1393,47 @@ msgstr "" msgid "None" msgstr "Tiada" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1435,150 +1441,150 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, fuzzy, php-format #| msgid "Save as file" msgid "Set log_output to %s" msgstr "Simpan sebagai fail" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, fuzzy, php-format #| msgid "Enabled" msgid "Enable %s" msgstr "Membenarkan" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, fuzzy, php-format #| msgid "Disable" msgid "Disable %s" msgstr "Tidak Membenarkan" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 #, fuzzy #| msgid "General relation features" msgid "Change settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:217 +#: js/messages.php:218 #, fuzzy #| msgid "General relation features" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy msgid "Chart title" msgstr "Tiada Jadual" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 #, fuzzy msgid "Analysing logs" msgstr "Local" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 #, fuzzy msgid "Jump to Log table" msgstr "Tiada pangkalan data" -#: js/messages.php:238 +#: js/messages.php:239 #, fuzzy #| msgid "No databases" msgid "No data found" msgstr "Tiada pangkalan data" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 #, fuzzy #| msgid "Explain SQL" msgid "Explain output" msgstr "Terangkan Kod SQL" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1586,7 +1592,7 @@ msgstr "Terangkan Kod SQL" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1596,96 +1602,96 @@ msgstr "Status" msgid "Time" msgstr "Masa" -#: js/messages.php:245 +#: js/messages.php:246 #, fuzzy #| msgid "Total" msgid "Total time:" msgstr "Jumlah" -#: js/messages.php:246 +#: js/messages.php:247 #, fuzzy #| msgid "SQL result" msgid "Profiling results" msgstr "Hasil SQL" -#: js/messages.php:247 +#: js/messages.php:248 #, fuzzy #| msgid "Table" msgctxt "Display format" msgid "Table" msgstr "Jadual" -#: js/messages.php:248 +#: js/messages.php:249 #, fuzzy msgid "Chart" msgstr "Tiada Jadual" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 #, fuzzy msgid "Log table filter options" msgstr "Statistik pangkalan data" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 #, fuzzy #| msgid "Number of rows per page" msgid "Sum of grouped rows:" msgstr "Bilangan baris per halaman" -#: js/messages.php:257 +#: js/messages.php:258 #, fuzzy #| msgid "Total" msgid "Total:" msgstr "Jumlah" -#: js/messages.php:259 +#: js/messages.php:260 #, fuzzy msgid "Loading logs" msgstr "Local" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 #, fuzzy msgid "Reload page" msgstr "Tukarnama jadual ke" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1696,65 +1702,65 @@ msgstr "" msgid "Import" msgstr "Eksport" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Update Query" msgid "Analyse query" msgstr "Kemaskini Kueri" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 #, fuzzy #| msgid "Documentation" msgid "Recommendation" msgstr "Dokumentasi" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 #, fuzzy #| msgid "Documentation" msgid "Justification" msgstr "Dokumentasi" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1765,70 +1771,70 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 #, fuzzy #| msgid "General relation features" msgid "Page-related settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 #, fuzzy msgid "Loading…" msgstr "Local" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processes" msgid "Processing request" msgstr "Proses-proses" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy msgid "Request failed!!" msgstr "Jenis Kueri" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proses-proses" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Inside column:" msgid "Dropping column" msgstr "Di dalam kolum:" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy msgid "Adding primary key" msgstr "Tambah medan baru" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1838,65 +1844,65 @@ msgstr "Tambah medan baru" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy msgid "Renaming databases" msgstr "Tukarnama jadual ke" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy msgid "Copying database" msgstr "Tiada pangkalan data" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 #, fuzzy #| msgid "Search" msgid "Searching" msgstr "Cari" -#: js/messages.php:327 +#: js/messages.php:328 #, fuzzy msgid "Hide search results" msgstr "kueri-SQL" -#: js/messages.php:328 +#: js/messages.php:329 #, fuzzy msgid "Show search results" msgstr "kueri-SQL" -#: js/messages.php:329 +#: js/messages.php:330 #, fuzzy #| msgid "Browse" msgid "Browsing" msgstr "Lungsur" -#: js/messages.php:330 +#: js/messages.php:331 #, fuzzy #| msgid "Delete" msgid "Deleting" msgstr "Padam" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1913,45 +1919,45 @@ msgstr "" msgid "Export" msgstr "Eksport" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, fuzzy, php-format #| msgid "Number of rows per page" msgid "Values for column %s" msgstr "Bilangan baris per halaman" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, fuzzy, php-format msgid "Add %d value(s)" msgstr "Tambah Pengguna Baru" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 #, fuzzy msgid "Hide query box" msgstr "kueri-SQL" -#: js/messages.php:348 +#: js/messages.php:349 #, fuzzy msgid "Show query box" msgstr "kueri-SQL" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1965,7 +1971,7 @@ msgstr "kueri-SQL" msgid "Edit" msgstr "Ubah" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1977,94 +1983,94 @@ msgstr "Ubah" msgid "Delete" msgstr "Padam" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, fuzzy, php-format #| msgid "Variable" msgid "Variable %d:" msgstr "Pembolehubah" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 #, fuzzy #| msgid "Column names" msgid "Column selector" msgstr "Nama Kolum" -#: js/messages.php:359 +#: js/messages.php:360 #, fuzzy #| msgid "Search in database" msgid "Search this list" msgstr "Cari di pangkalan data" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 #, fuzzy #| msgid "Attributes" msgid "Continue" msgstr "Atribut" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 #, fuzzy #| msgid "A primary key has been added on %s." msgid "Primary key added." msgstr "Kekunci utama telah ditambah pada %s" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 #, fuzzy #| msgid "Tracking report" msgid "Taking you to next step…" msgstr "Laporan penjejak" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 #, fuzzy @@ -2072,278 +2078,279 @@ msgstr "" msgid "End of step" msgstr "Pada Akhir Jadual" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 #, fuzzy #| msgid "Create table on database %s" msgid "Create the following table" msgstr "Cipta jadual baru pada pangkalan data %s" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Simpan" -#: js/messages.php:397 +#: js/messages.php:398 #, fuzzy msgid "Hide search criteria" msgstr "kueri-SQL" -#: js/messages.php:398 +#: js/messages.php:399 #, fuzzy msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:399 +#: js/messages.php:400 #, fuzzy #| msgid "Search" msgid "Range search" msgstr "Cari" -#: js/messages.php:400 +#: js/messages.php:401 #, fuzzy #| msgid "Column names" msgid "Column maximum:" msgstr "Nama Kolum" -#: js/messages.php:401 +#: js/messages.php:402 #, fuzzy #| msgid "Column names" msgid "Column minimum:" msgstr "Nama Kolum" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 #, fuzzy msgid "Hide find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:407 +#: js/messages.php:408 #, fuzzy msgid "Show find and replace criteria" msgstr "kueri-SQL" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Select two columns" msgstr "Tambah/Padam Kolum Medan" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 #, fuzzy #| msgid "Table of contents" msgid "Data point content" msgstr "Kandungan" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Abai" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Titik" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Rentetan talian" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Poligon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Lingkaran Dalaman" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer Ring" msgid "Outer ring" msgstr "Lingkaran Luar" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Muka Surat:" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 #, fuzzy #| msgid "Select All" msgid "Save page" msgstr "Sila pilih pangkalan data" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select All" msgid "Save page as" msgstr "Sila pilih pangkalan data" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 #, fuzzy #| msgctxt "PDF" @@ -2351,266 +2358,266 @@ msgstr "Sila pilih pangkalan data" msgid "Open page" msgstr "Penggunaan" -#: js/messages.php:467 +#: js/messages.php:468 #, fuzzy #| msgid "Select All" msgid "Delete page" msgstr "Sila pilih pangkalan data" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please select a page to continue" msgstr "Sila Pilih Laman untuk diubah" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Sunting atau eksport skema hubungan" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" -#: js/messages.php:477 +#: js/messages.php:478 #, fuzzy, php-format #| msgid "Value for the column \"%s\"" msgid "Add an option for column \"%s\"." msgstr "Nilai pada kolum \"%s\"" -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Hantar" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nama Kolum" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Papar semua" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Rentetan talian" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "DiBatalkan" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 #, fuzzy msgid "Import status" msgstr "Eksport" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pilih Jadual" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 #, fuzzy msgid "Go to link:" msgstr "Tiada pangkalan data" -#: js/messages.php:519 +#: js/messages.php:520 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nama Kolum" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:528 +#: js/messages.php:529 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Papar semua" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeks" -#: js/messages.php:533 +#: js/messages.php:534 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Papar grid" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indeks" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indeks" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Tables" msgid "tables" msgstr "Jadual-jadual" -#: js/messages.php:539 +#: js/messages.php:540 #, fuzzy msgid "views" msgstr "Medan" -#: js/messages.php:540 +#: js/messages.php:541 #, fuzzy msgid "procedures" msgstr "Proses-proses" -#: js/messages.php:541 +#: js/messages.php:542 #, fuzzy msgid "events" msgstr "Hantar" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy msgid "functions" msgstr "Fungsi" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2618,136 +2625,136 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy msgid "Send error report" msgstr "Pilihan Pelayan" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy msgid "Submit error report" msgstr "Pilihan Pelayan" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy msgid "Show report details" msgstr "Papar jadual" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Abai" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Papar kueri ini di sini lagi" -#: js/messages.php:599 +#: js/messages.php:600 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Adakah anda ingin " -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komen jadual" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy msgid "Hide arguments" msgstr "kueri-SQL" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Terdahulu" -#: js/messages.php:639 +#: js/messages.php:640 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2755,96 +2762,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:646 +#: js/messages.php:647 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:649 +#: js/messages.php:650 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mei" -#: js/messages.php:651 +#: js/messages.php:652 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:652 +#: js/messages.php:653 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:653 +#: js/messages.php:654 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2852,78 +2859,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Dis" -#: js/messages.php:692 +#: js/messages.php:693 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:693 +#: js/messages.php:694 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:694 +#: js/messages.php:695 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2931,199 +2938,199 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Tiada" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:764 +#: js/messages.php:765 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekod" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Tambah medan baru" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Sila pilih pangkalan data" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Sila Pilih Laman untuk diubah" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -4080,7 +4087,7 @@ msgstr "Indeks" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Aksi" @@ -4091,8 +4098,8 @@ msgid "Keyname" msgstr "Nama Kekunci" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -4124,9 +4131,9 @@ msgstr "Pengumpulan" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 #, fuzzy msgid "Comment" msgstr "Komen" @@ -4142,14 +4149,14 @@ msgstr "Indeks %s telah digugurkan." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Gugur" @@ -4259,7 +4266,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4914,19 +4921,25 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 #, fuzzy #| msgid "Create an index" msgctxt "date and time types" msgid "Date and time" msgstr "Cipta indeks baru" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 #, fuzzy #| msgid "Lines terminated by" @@ -4934,7 +4947,7 @@ msgctxt "string types" msgid "String" msgstr "Baris ditamatkan oleh" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 #, fuzzy #| msgid "Total" msgctxt "spatial types" @@ -5097,7 +5110,7 @@ msgstr "Guna nilai ini" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Baris" @@ -5181,7 +5194,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Nama" @@ -8177,7 +8190,8 @@ msgid "No data to display" msgstr "Tiada pangkalan data" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8218,37 +8232,38 @@ msgid "The name '%s' is a MySQL reserved keyword." msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "Database %s has been dropped." msgid "The columns have been moved successfully." msgstr "angkalan data %s telah digugurkan." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %s has been moved to %s." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Jadual %s telah dipindahkan ke %s." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Query type" msgid "Query error" msgstr "Jenis Kueri" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %s has been moved to %s." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Jadual %s telah dipindahkan ke %s." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Ubah" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8259,20 +8274,20 @@ msgstr "Ubah" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Tekspenuh" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Session value" msgid "Distinct values" @@ -9731,7 +9746,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -10195,33 +10210,33 @@ msgid "Delete the table (DROP)" msgstr "Tiada pangkalan data" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 #, fuzzy msgid "Repair" msgstr "Baiki jadual" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10241,6 +10256,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -10460,7 +10476,7 @@ msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Melonggok data bagi jadual" @@ -10487,14 +10503,14 @@ msgstr "Keterangan" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Struktur jadual bagi jadual" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 #, fuzzy msgid "Structure for view" @@ -10502,7 +10518,7 @@ msgstr "Struktur sahaja" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -10614,7 +10630,7 @@ msgid "Database:" msgstr "Pangkalan Data" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -10725,7 +10741,7 @@ msgid "Data creation options" msgstr "Statistik pangkalan data" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -10795,7 +10811,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -10876,24 +10892,24 @@ msgstr "Tambahkan nilai AUTO_INCREMENT" msgid "AUTO_INCREMENT for table" msgstr "Tambahkan nilai AUTO_INCREMENT" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format msgid "Structure for view %s exported as a table" msgstr "Struktur sahaja" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -14959,7 +14975,7 @@ msgid "Pick from Central Columns" msgstr "Tukarnama jadual ke" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -14976,84 +14992,84 @@ msgstr "" msgid "after %s" msgstr "Selepas %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy msgid "Partition by:" msgstr "Operasi" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Number of rows per page" msgid "Expression or column list" msgstr "Bilangan baris per halaman" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy msgid "Partitions:" msgstr "Operasi" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy msgid "Subpartition by:" msgstr "Operasi" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy msgid "Subpartitions:" msgstr "Operasi" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy msgid "Partition" msgstr "Operasi" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Nilai" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy msgid "Subpartition" msgstr "Operasi" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data Dictionary" msgid "Data directory" msgstr "Kamus Data" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Index type:" msgid "Index directory" msgstr "Jenis indeks :" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Start" msgid "Max rows" msgstr "Sab" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Lungsur" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Search" msgid "Table space" msgstr "Cari" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "User" msgid "Node group" @@ -15898,31 +15914,49 @@ msgid "at beginning of table" msgstr "Pada Awalan Jadual" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy msgid "Partitions" msgstr "Operasi" #: templates/table/structure/display_partitions.phtml:7 +#, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Tiada indeks ditafrifkan!" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Panjang baris" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Panjang baris" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +msgid "Partition table" +msgstr "Operasi" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Print view" +msgid "Edit partitioning" +msgstr "Paparan Cetak" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/nb.po b/po/nb.po index 216fce5a08..7523e83429 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-06-22 04:13+0200\n" "Last-Translator: Sebastian \n" "Language-Team: Norwegian Bokmål " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 #, fuzzy #| msgid "Save & Close" msgid "Save & close" msgstr "Lagre & Lukk" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Tilbakestill" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Reset All" msgid "Reset all" msgstr "Nullstill Alle" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Manglende verdi i skjemaet!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Velg minst et av alternativene!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Vennligst oppgi en gyldig lengde!" -#: js/messages.php:97 +#: js/messages.php:98 #, fuzzy #| msgid "Apply index(s)" msgid "Add index" msgstr "Utfør indeks(er)" -#: js/messages.php:98 +#: js/messages.php:99 #, fuzzy #| msgid "Edit Index" msgid "Edit index" msgstr "Rediger indeks" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Legg %s kolonne(r) til index" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Opprett en enkeltkolonneindeks" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Opprett kompositt indeks" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Kompositt med:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Vennligst velg kolonne(r) for indexen." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "Du må sette inn minst en kolonne." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "Forhåndsvis SQL" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Simuler spørring" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Matchede rader:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL-spørring:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 #, fuzzy #| msgid "Y Values" msgid "Y values" msgstr "Y-verdier" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "Vertsnavnet er tomt!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "Brukernavnet er tomt!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Passordet er blankt!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Fjern valgte brukere" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Lukk" -#: js/messages.php:129 +#: js/messages.php:130 #, fuzzy #| msgid "The number of pages created." msgid "Template was created." msgstr "Antall sider opprettet." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 #, fuzzy #| msgid "The profile has been updated." msgid "Template was updated." msgstr "Profilen har blitt oppdatert." -#: js/messages.php:132 +#: js/messages.php:133 #, fuzzy #| msgid "The row has been deleted." msgid "Template was deleted." msgstr "Raden er slettet." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Annet" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Tilkoblinger/prosesser" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Lokal monitorkonfigurasjon er inkompatibel!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1170,165 +1176,165 @@ msgstr "" "Vennlist tilbakestill din konfigurasjon til standard i menyen " "Innstillinger." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Spørrings cache effektivitet" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Spørrings cache bruk" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Spørrings cache brukt" -#: js/messages.php:151 +#: js/messages.php:152 #, fuzzy #| msgid "System CPU Usage" msgid "System CPU usage" msgstr "System CPU-bruk" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "System minne" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Systembytte" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Gjennomsnitt load" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Totalt minne" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Cached minne" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Buffered minne" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Ledig minne" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Brukt minne" -#: js/messages.php:162 +#: js/messages.php:163 #, fuzzy #| msgid "Total Swap" msgid "Total swap" msgstr "Totalt swap" -#: js/messages.php:163 +#: js/messages.php:164 #, fuzzy #| msgid "Cached Swap" msgid "Cached swap" msgstr "Cached swap" -#: js/messages.php:164 +#: js/messages.php:165 #, fuzzy #| msgid "Used Swap" msgid "Used swap" msgstr "Brukt swap" -#: js/messages.php:165 +#: js/messages.php:166 #, fuzzy #| msgid "Free Swap" msgid "Free swap" msgstr "Ledig swap" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Bytes sendt" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Bytes mottatt" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "tilkoblinger" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Prosesser" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabell(er)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Spørringer" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Trafikk" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Innstillinger" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Legg graf til grid" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Legg minst én variabel til serien!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1340,47 +1346,47 @@ msgstr "Legg minst én variabel til serien!" msgid "None" msgstr "Ingen" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Gjenoppta monitor" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Pause overvåkning" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Start automatisk oppdatering" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Stopp automatisk oppdatering" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log og slow_query_log er aktivert." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log er aktivert." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log er aktivert." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log og general_log er deaktivert." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output er ikke satt til TABLE." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output er satt til TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1391,12 +1397,12 @@ msgstr "" "lenger enn %d sekunder. Avhengig av ditt system, er det tilrådelig å sette " "long_query_time til 0-2 sekunder." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time er satt til %d sekund(er)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1405,30 +1411,30 @@ msgstr "" "omstart av server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "Lagre utdata til %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "Aktiver %s" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "Deaktiver %s" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "Sett long_query_time til %d sekunder." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1436,59 +1442,59 @@ msgstr "" "Du kan ikke endre disse verdiene. Logg inn som root eller kontakt din " "databaseadministrator." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Endre innstillinger" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Nåværende innstillinger" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 #, fuzzy #| msgid "Report title" msgid "Chart title" msgstr "Rapporttittel" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Differensial" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Delt på %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Enhet" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Fra langsom logg" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Fra generell logg" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "Databasenavnet er ukjent for denne spørring i serverens logger." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Analyserer logger" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Analyserer og laster inn logger. Dette kan ta tid." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Avbryt forespørsel" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1498,7 +1504,7 @@ msgstr "" "Men kun SQL-spørringene har blitt brukt som en grupperingskriterie, så andre " "attributter i spørringer som starter samtidig kan variere." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1508,32 +1514,32 @@ msgstr "" "spørringer i samme tabellen bli gruppert sammen, uten hensyn til de innsatte " "dataene." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" "Loggdata lastet inn. Spørringer vil bli utført i løpet av denne tidsplanen:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Gå til Loggtabellen" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Ingen data funnet" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "Logg analysert, men ingen data var funnet i løpet av tidsperioden." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Analyserer…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Forklar utdata" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1541,7 +1547,7 @@ msgstr "Forklar utdata" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1551,59 +1557,59 @@ msgstr "Status" msgid "Time" msgstr "Tid" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Total tid:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profileringsresultater" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabell" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Grafisk fremstilling" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Logg tabellfiltervalgene" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filtrer" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Filtrer spørringer med ord/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Grupper spørringer, og ignorer varierende data brukt i WHERE-muligheter" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Sum av grupperte rader:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Totalt:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Laster logger" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Visningsoppdatering feilet" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1613,28 +1619,28 @@ msgstr "" "respons. Dette er mest sannsynlig begrunnet at din sesjon utgikk. Det burde " "hjelpe å laste inn siden og logge inn på nytt." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Oppdater siden" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Berørte rader:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Feilet analyseringen av konfigurasjonsfilen. Det virker ikke som det er " "gyldig JSON-kode." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Kunne ikke bygge diagramrutenett med importert konfigurasjon. Setter til " "standardkonfigurasjon…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1644,61 +1650,61 @@ msgstr "" msgid "Import" msgstr "Importer" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importer overvåkningskonfigurasjon" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Vennligst velg filen du vil importere." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Ingen filer tilgjengelig på server for importering!" -#: js/messages.php:275 +#: js/messages.php:276 #, fuzzy #| msgid "Analyse Query" msgid "Analyse query" msgstr "Analyser Spørring" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Rådgivningssystem" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Mulige ytelsesproblemer" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Problem" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Anbefaling" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Regeldetaljer" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Begrunnelse" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Brukt variabel / formel" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Formaterer SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1709,71 +1715,71 @@ msgstr "Formaterer SQL…" msgid "Cancel" msgstr "Avbryt" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Side-relaterte innstillinger" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Laster…" -#: js/messages.php:301 +#: js/messages.php:302 #, fuzzy #| msgid "Request Aborted!!" msgid "Request aborted!!" msgstr "Forespørsel avbrutt!!" -#: js/messages.php:302 +#: js/messages.php:303 #, fuzzy #| msgid "Processing Request" msgid "Processing request" msgstr "Prosessforespørsel" -#: js/messages.php:303 +#: js/messages.php:304 #, fuzzy #| msgid "Request Failed!!" msgid "Request failed!!" msgstr "Forespørsel avbrutt!!" -#: js/messages.php:304 +#: js/messages.php:305 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Feil i prosesseringsforespørsel" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Feilkode: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Feilmelding: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Ingen databaser er valgt." -#: js/messages.php:308 +#: js/messages.php:309 #, fuzzy #| msgid "Dropping Column" msgid "Dropping column" msgstr "Dropper kolonne" -#: js/messages.php:309 +#: js/messages.php:310 #, fuzzy #| msgid "Add primary key" msgid "Adding primary key" msgstr "Legg til primærnøkkel" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1783,61 +1789,61 @@ msgstr "Legg til primærnøkkel" msgid "OK" msgstr "OK" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Klikk for å overse dette varselet" -#: js/messages.php:314 +#: js/messages.php:315 #, fuzzy #| msgid "Renaming Databases" msgid "Renaming databases" msgstr "Endrer databasenes navn" -#: js/messages.php:315 +#: js/messages.php:316 #, fuzzy #| msgid "Copying Database" msgid "Copying database" msgstr "Kopierer database" -#: js/messages.php:316 +#: js/messages.php:317 #, fuzzy #| msgid "Changing Charset" msgid "Changing charset" msgstr "Endrer tegnsett" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Slå på kontroll av fremmednøkler" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Klarte ikke hente ekte antall rader." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Søker" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Skjul søkeresultater" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Vis søkeresultater" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Leser" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Sletter" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "Definisjonen av en lagret funksjon må inneholde RETURN erklæring!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1854,44 +1860,44 @@ msgstr "Definisjonen av en lagret funksjon må inneholde RETURN erklæring!" msgid "Export" msgstr "Eksporter" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Verdier for kolonne %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Verdier for ny kolonne" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Skriv hver verdi i et eget felt." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "Legg til %d verdi(er)" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Legg merke til: Om filen inneholder flere tabeller, så vil de kombineres til " "en tabell." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "Skjul spørringsboks" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "Vis spørringsboks" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1905,7 +1911,7 @@ msgstr "Vis spørringsboks" msgid "Edit" msgstr "Rediger" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1917,41 +1923,41 @@ msgstr "Rediger" msgid "Delete" msgstr "Slett" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d er ikke et gyldig radnummer." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Ingen autolagret spørring" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variabel %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Velg" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Kolonnevelger" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Søk i denne listen" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1960,15 +1966,15 @@ msgstr "" "Ingen kolonner i sentral listen. Sørg for at sentral kolonne liste for " "databasen %s ikke har kolonner som er til stede i den aktuelle tabellen." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Se mer" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Er du sikker?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1976,51 +1982,51 @@ msgstr "" "Denne handlingen kan endre definisjonen av enkelte kolonner.
Er du " "sikker på at du vil fortsette?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Fortsett" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Legg til primærnøkkel" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Primærnøkkel lagt til." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Tar deg videre til neste trinn…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "Første trinn av normaliseringen er ferdig for tabellen '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Slutten på dette trinnet" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Andre trinn for normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Utført" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Bekreft delvise avhengigheter" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Valgte delvise avhengigheter er følgende:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2028,19 +2034,19 @@ msgstr "" "Merk: a, b -> d, f forutsetter at verdiene i kolonnene a og b, sammen kan " "bestemme verdiene for kolonne d og kolonne f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Ingen delvise avhengigheter er valgt!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "Vis meg mulige delvise avhengigheter basert på dataene i tabellen" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Skjul listen over delvise avhengigheter" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2048,171 +2054,172 @@ msgstr "" "Slapp av! Dette kan ta noen sekunder, basert på datamengden og antall " "kolonner i tabellen." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Trinn" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "Følgende handlinger vil bli utført:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "SLETT kolonnene %s fra tabellen %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Lag følgende tabell" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Tredje trinn av normaliseringen (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Bekreft transitive avhengigheter" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Følgende er valgte avhengigheter:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Ingen avhengigheter er valgt!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Lagre" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Skjul søkekriterier" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Områdesøk" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Kolonne maksimum:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Kolonne minimum:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Minimumsverdi:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Maksimumsverdi:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Skjul kriterier for søk- og erstatt" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Vis kriteriene for søk og erstatt" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Hvert punkt representerer en datarad." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Ved å ha musen over punktet vises dets etikett." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "For å zoome inn, velger en del for plotteområdet med musen." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" "Trykk på \"tilbakestill zoom\"-knappen for å gå tilbake til " "standardvisningen." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "Velg et datapunkt for å vise, og eventuelt endre raden med data." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "Du kan endre størrelsen på området ved å dra i hjørnet nederst til høyre." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Velg to kolonner" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Velg to forskjellige kolonner" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Datapunktinnhold" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopier" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punkt" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Linjestreng" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polygon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometri" -#: js/messages.php:440 +#: js/messages.php:441 #, fuzzy #| msgid "Inner Ring" msgid "Inner ring" msgstr "Indre ring" -#: js/messages.php:441 +#: js/messages.php:442 #, fuzzy #| msgid "Outer ring:" msgid "Outer ring" msgstr "Ytre ring:" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Vil du kopiere krypteringsnøkkel?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Krypteringsnøkkel" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2220,24 +2227,24 @@ msgstr "" "Indikerer at du har gjort endringer til denne siden; du vil bli bedt om " "bekreftelse før du forlater endringer" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Velg primærnøkkelen eller en unik nøkkel!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Velg kolonne for visning" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2245,77 +2252,77 @@ msgstr "" "Du har ikke lagret endringene i utseendet. De vil forsvinne om du ikke " "lagrer dem. Ønsker du å fortsette?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Sidenummer" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Lagre side" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Lagre side som" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åpne siden" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Slett side" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Ikke navngitt" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Vennligst velg en side for å fortsette" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Vennligst tast inn et gyldig side navn" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Ønsker du å lagre endringene i den gjeldende siden?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Slettet side" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Eksporter relasjonsskjema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Endringene er lagret" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Legg til valg for kolonne \"%s\"." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) opprettet." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Send" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Trykk Escape for å avbryte endring." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2323,15 +2330,15 @@ msgstr "" "Du har endret en del data og de har ikke blitt lagret. Er du sikker på at du " "vil forlate denne siden før du lagrer dataene?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Dra for å endre rekkefølgen." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Klikk for å sortere resultatene etter denne kolonnen." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2341,26 +2348,26 @@ msgstr "" "mellom STIGENDE/ SYNKENDE
- Ctrl + klikk eller Alt + klikk (Mac: Shift " "+ Option + Klikk). For å fjerne kolonnen fra BESTILLT AV-leddet" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "Klikk for å markere/fjern markering." -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "Dobbelklikk for å kopiere kolonnenavn." -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klikk pilen som peker ned
for å bytte på kolonnens synlighet." -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2369,11 +2376,11 @@ msgstr "" "valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger " "virker kanskje ikke etter lagring." -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Skriv inn en gyldig heksadesimal streng. Gyldige tegn er 0-9, A-F." -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2381,125 +2388,125 @@ msgstr "" "Ønsker du virkelig å se alle radene? For et stort bord kan dette krasje " "nettleseren." -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "Opprinnelig lengde" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "avbryt" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "Avbrutt" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "Vellykket" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "Import status" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "Legg filene her" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "Velg database først" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "Du kan også endre de fleste verdiene
ved å dobbeltklikke på dem." -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "Du kan også endre de fleste verdiene
ved å dobbeltklikke på dem." -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "Gå til link:" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "Kopier kolonnenavn." -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "Høyreklikk på kolonnenavnet for å kopiere det til utklippstavlen." -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "Generer" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "Mer" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:532 +#: js/messages.php:533 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigasjonstreet." -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "Lenke med hovedpanelet" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "Fjern lenke fra hovedpanelet" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "Å filtrere alle databaser på serveren, trykker Enter etter et søkeord" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "Slik filtrerer du alle %s i databasen, trykk Enter etter et søkeord" -#: js/messages.php:538 +#: js/messages.php:539 msgid "tables" msgstr "tabeller" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "visning" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "prosedyrer" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "hendelse" -#: js/messages.php:542 +#: js/messages.php:543 msgid "functions" msgstr "funksjoner" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "Den valgte siden ble ikke funnet i historikken. Siden kan ha utløpt." -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2509,58 +2516,58 @@ msgstr "" "versjon er %s, utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "er oppdatert" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "Opprett view" -#: js/messages.php:556 +#: js/messages.php:557 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Tjenerport" -#: js/messages.php:557 +#: js/messages.php:558 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Send feilrapport" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Det oppstod en alvorlig feil i JavaScript. Ønsker du å sende en feilrapport?" -#: js/messages.php:561 +#: js/messages.php:562 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Endre Rapportinnstillinger" -#: js/messages.php:562 +#: js/messages.php:563 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Vis Rapportdetaljer" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Eksporten er ufullstendig, på grunn av en lav kjøringsfrist på PHP nivå!" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2569,62 +2576,62 @@ msgstr "" "Advarsel: et skjema på denne siden har mer enn %d felt. Ved innsending kan " "noen av feltene bli ignorert, på grunn av PHP max_input_vars konfigurasjon." -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "Noen feil har blitt oppdaget på serveren!" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "Vennligst se nederst i dette vinduet." -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "Ignorer alle" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "I henhold til dine innstillinger, blir de sendt i dag, vær tålmodig." -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "Utfør denne spørring igjen?" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "Vil du virkelig slette dette bokmerket?" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabellkommentarer" -#: js/messages.php:604 +#: js/messages.php:605 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Skjul søkeresultater" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " @@ -2634,339 +2641,339 @@ msgstr "" "grensen er nådd, enkelte funksjoner kan ikke fungere skikkelig for deg. I " "Safari er slike problem ofte forårsaket av \"Private Mode Browsing\"." -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "I dag" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "Januar" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "Februar" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "Mars" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "April" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "Mai" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "Juni" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "Juli" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "August" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "September" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "Oktober" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "November" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "Des" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "Mandag" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "Fredag" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "Uke" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "kalender-måned-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "Time" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "Minutt" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "Sekund" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "Vennligst ordne dette feltet" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "Vennligst tast inn en gyldig e-post adresse" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "Vennligst tast inn en gyldig URL" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "Vennligst tast inn en gyldig dato" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "Vennligst tast inn en gyldig dato ( ISO )" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "Vennligst tast inn et gyldig tall" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "Vennligst tast inn et gyldig kreditkort nummer" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "Vennligst oppgi kun tall" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "Vennligst tast inn den samme verdien igjen" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "Vennligst tast inn minst {0} tegn" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "Vennligst tast inn en verdi mellom {0} og {1}" -#: js/messages.php:789 +#: js/messages.php:790 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Vennligst oppgi en gyldig lengde!" -#: js/messages.php:790 +#: js/messages.php:791 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:792 +#: js/messages.php:793 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:793 +#: js/messages.php:794 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3857,7 +3864,7 @@ msgstr "Indekser" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "Handling" @@ -3868,8 +3875,8 @@ msgid "Keyname" msgstr "Nøkkel" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3901,9 +3908,9 @@ msgstr "Sammenligning" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "Kommentar" @@ -3918,14 +3925,14 @@ msgstr "Indeksen %s har blitt slettet." #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "Slett" @@ -4037,7 +4044,7 @@ msgstr "Overvåkning" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4724,23 +4731,29 @@ msgstr "En samling av polygoner" msgid "A collection of geometry objects of any type" msgstr "En samling av geometriobjekter av enhver type" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "Numerisk" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "Dato og tid" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "Streng" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "Romtyper" @@ -4896,7 +4909,7 @@ msgstr "Bruk denne verdien" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "Rader" @@ -4982,7 +4995,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "Navn" @@ -8536,7 +8549,8 @@ msgid "No data to display" msgstr "Ingen data funnet" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -8574,39 +8588,40 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 #, fuzzy #| msgid "No rows selected" msgid "No column selected." msgstr "Ingen rader valgt" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 #, fuzzy #| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." msgstr "De valgte brukerne har blitt slettet." -#: libraries/controllers/TableStructureController.class.php:732 -#, fuzzy, php-format -#| msgid "Table %1$s has been altered successfully." -msgid "" -"Table %1$s has been altered successfully. Privileges have been adjusted." -msgstr "Tabellen %1$s har blitt endret." - -#: libraries/controllers/TableStructureController.class.php:785 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 #: libraries/tracking.lib.php:1094 #, fuzzy #| msgid "Gather errors" msgid "Query error" msgstr "Samle feilmeldinger" -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:963 +#, fuzzy, php-format +#| msgid "Table %1$s has been altered successfully." +msgid "" +"Table %1$s has been altered successfully. Privileges have been adjusted." +msgstr "Tabellen %1$s har blitt endret." + +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "Endre" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -8617,20 +8632,20 @@ msgstr "Endre" msgid "Index" msgstr "Indeks" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "Fulltekst" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 #, fuzzy #| msgid "Browse distinct values" msgid "Distinct values" @@ -10154,7 +10169,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "Visning" @@ -10625,32 +10640,32 @@ msgid "Delete the table (DROP)" msgstr "Gå til database" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "Analyser" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "Kontroller" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "Optimaliser" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "Gjenoppbygg" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "Reparer" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -10670,6 +10685,7 @@ msgid "Partition %s" msgstr "Partisjon %s" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "Fjern partisjonering" @@ -10899,7 +10915,7 @@ msgstr "Databasevisningsinnstillinger" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "Dataark for tabell" @@ -10925,21 +10941,21 @@ msgstr "Beskrivelse" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "Tabellstruktur for tabell" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "Visningsstruktur" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "Erstatningsstruktur for visning" @@ -11049,7 +11065,7 @@ msgid "Database:" msgstr "Database" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #, fuzzy #| msgid "Data" msgid "Data:" @@ -11169,7 +11185,7 @@ msgid "Data creation options" msgstr "Transformasjonsvalg" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -11239,7 +11255,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -11315,25 +11331,25 @@ msgstr "Ikke bruk AUTO_INCREMENT for nullverdier" msgid "AUTO_INCREMENT for table" msgstr "Legg til AUTO_INCREMENT verdi" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "MIME TYPER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "RELASJONER FOR TABELLEN" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, fuzzy, php-format #| msgid "Structure for view" msgid "Structure for view %s exported as a table" msgstr "Visningsstruktur" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 #, fuzzy #| msgid "Allows reading data." msgid "Error reading data:" @@ -15853,7 +15869,7 @@ msgid "Pick from Central Columns" msgstr "Fjern kolonne(r)" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 #, fuzzy #| msgid "Compression" msgid "Expression" @@ -15870,92 +15886,92 @@ msgstr "" msgid "after %s" msgstr "Etter %s" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 #, fuzzy #| msgid "partitioned" msgid "Partition by:" msgstr "partisjonert" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 #, fuzzy #| msgid "Values for column %s" msgid "Expression or column list" msgstr "Verdier for kolonne %s" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Partition %s" msgid "Partitions:" msgstr "Partisjon %s" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 #, fuzzy #| msgid "partitioned" msgid "Subpartition by:" msgstr "partisjonert" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 #, fuzzy #| msgid "partitioned" msgid "Subpartitions:" msgstr "partisjonert" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 #, fuzzy #| msgid "Partition %s" msgid "Partition" msgstr "Partisjon %s" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 #, fuzzy #| msgid "Value" msgid "Values" msgstr "Verdi" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 #, fuzzy #| msgid "partitioned" msgid "Subpartition" msgstr "partisjonert" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 #, fuzzy #| msgid "Engines" msgid "Engine" msgstr "Motorer" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 #, fuzzy #| msgid "Data home directory" msgid "Data directory" msgstr "Datalagringsmappe" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 #, fuzzy #| msgid "Save directory" msgid "Index directory" msgstr "Lagringsmappe" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 #, fuzzy #| msgid "Matched rows:" msgid "Max rows" msgstr "Matchede rader:" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 #, fuzzy #| msgid "rows" msgid "Min rows" msgstr "Se på" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Table search" msgid "Table space" msgstr "Tabellsøk" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 #, fuzzy #| msgid "Users" msgid "Node group" @@ -16811,7 +16827,7 @@ msgid "at beginning of table" msgstr "Ved begynnelsen av tabellen" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 #, fuzzy #| msgid "Partition %s" msgid "Partitions" @@ -16819,28 +16835,47 @@ msgstr "Partisjon %s" #: templates/table/structure/display_partitions.phtml:7 #, fuzzy +#| msgid "No index defined!" +msgid "No partitioning defined!" +msgstr "Ingen indeks definert!" + +#: templates/table/structure/display_partitions.phtml:10 +#, fuzzy #| msgid "partitioned" msgid "Partitioned by:" msgstr "partisjonert" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 #, fuzzy #| msgid "partitioned" msgid "Sub partitioned by:" msgstr "partisjonert" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 #, fuzzy #| msgid "Row length" msgid "Data length" msgstr "Radlengde" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 #, fuzzy #| msgid "Row length" msgid "Index length" msgstr "Radlengde" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "partitioned" +msgid "Partition table" +msgstr "partisjonert" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +#, fuzzy +#| msgid "Remove partitioning" +msgid "Edit partitioning" +msgstr "Fjern partisjonering" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 #, fuzzy #| msgid "Print view" diff --git a/po/ne.po b/po/ne.po index e095887276..87c434ac55 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-08-26 14:51+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Nepali " msgstr "" -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" msgstr "" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "" -#: js/messages.php:90 +#: js/messages.php:91 #, fuzzy #| msgid "Select All" msgid "Reset all" msgstr "सबै चयन गर्नुहोस" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "" -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "" -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "" -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "" -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "" -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "" -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1109,155 +1113,155 @@ msgid "" "your configuration to default in the Settings menu." msgstr "" -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1269,47 +1273,47 @@ msgstr "" msgid "None" msgstr "" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "" -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "" -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "" -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "" -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "" -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "" -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1317,136 +1321,136 @@ msgid "" "depending on your system." msgstr "" -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "" -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" msgstr "" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "" -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." msgstr "" -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "" -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "" -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " "data." msgstr "" -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1454,7 +1458,7 @@ msgstr "" msgid "Status" msgstr "स्थिति" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1464,82 +1468,82 @@ msgstr "स्थिति" msgid "Time" msgstr "" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1549,59 +1553,59 @@ msgstr "" msgid "Import" msgstr "" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "" -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1612,59 +1616,59 @@ msgstr "" msgid "Cancel" msgstr "" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "" -#: js/messages.php:304 -msgid "Error in processing request" -msgstr "" - #: js/messages.php:305 -#, php-format -msgid "Error code: %s" +msgid "Error in processing request" msgstr "" #: js/messages.php:306 #, php-format +msgid "Error code: %s" +msgstr "" + +#: js/messages.php:307 +#, php-format msgid "Error text: %s" msgstr "" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "" -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1674,55 +1678,55 @@ msgstr "" msgid "OK" msgstr "" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "" -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1739,42 +1743,42 @@ msgstr "" msgid "Export" msgstr "" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "" -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1788,7 +1792,7 @@ msgstr "" msgid "Edit" msgstr "" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1800,562 +1804,563 @@ msgstr "" msgid "Delete" msgstr "" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "" -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " "database %s has columns that are not present in the current table." msgstr "" -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" msgstr "" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "" -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "" -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." msgstr "" -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." msgstr "" -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "" -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "" -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "" -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "" -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "" -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "" -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" msgstr "" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:477 -#, php-format -msgid "Add an option for column \"%s\"." -msgstr "" - #: js/messages.php:478 #, php-format +msgid "Add an option for column \"%s\"." +msgstr "" + +#: js/messages.php:479 +#, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "" -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:487 +#: js/messages.php:488 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:488 +#: js/messages.php:489 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:490 +#: js/messages.php:491 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:492 libraries/DisplayResults.class.php:1017 +#: js/messages.php:493 libraries/DisplayResults.class.php:1017 #: libraries/browse_foreigners.lib.php:290 #: libraries/browse_foreigners.lib.php:343 #: libraries/server_privileges.lib.php:3657 msgid "Show all" msgstr "" -#: js/messages.php:493 +#: js/messages.php:494 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:494 +#: js/messages.php:495 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:495 +#: js/messages.php:496 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:496 +#: js/messages.php:497 msgid "Original length" msgstr "" -#: js/messages.php:499 +#: js/messages.php:500 msgid "cancel" msgstr "" -#: js/messages.php:500 libraries/server_status.lib.php:280 +#: js/messages.php:501 libraries/server_status.lib.php:280 msgid "Aborted" msgstr "" -#: js/messages.php:502 +#: js/messages.php:503 msgid "Success" msgstr "" -#: js/messages.php:503 +#: js/messages.php:504 msgid "Import status" msgstr "" -#: js/messages.php:504 libraries/navigation/Navigation.class.php:112 +#: js/messages.php:505 libraries/navigation/Navigation.class.php:112 msgid "Drop files here" msgstr "" -#: js/messages.php:505 +#: js/messages.php:506 msgid "Select database first" msgstr "" -#: js/messages.php:510 +#: js/messages.php:511 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:513 +#: js/messages.php:514 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:518 +#: js/messages.php:519 msgid "Go to link:" msgstr "" -#: js/messages.php:519 +#: js/messages.php:520 msgid "Copy column name." msgstr "" -#: js/messages.php:520 +#: js/messages.php:521 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:523 +#: js/messages.php:524 msgid "Generate password" msgstr "" -#: js/messages.php:524 libraries/replication_gui.lib.php:899 +#: js/messages.php:525 libraries/replication_gui.lib.php:899 msgid "Generate" msgstr "" -#: js/messages.php:528 +#: js/messages.php:529 msgid "More" msgstr "" -#: js/messages.php:531 +#: js/messages.php:532 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:532 +#: js/messages.php:533 msgid "Hide panel" msgstr "" -#: js/messages.php:533 +#: js/messages.php:534 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:534 libraries/config/messages.inc.php:478 +#: js/messages.php:535 libraries/config/messages.inc.php:478 #: libraries/navigation/NavigationTree.class.php:1397 msgid "Link with main panel" msgstr "" -#: js/messages.php:535 libraries/navigation/NavigationTree.class.php:1400 +#: js/messages.php:536 libraries/navigation/NavigationTree.class.php:1400 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:536 +#: js/messages.php:537 msgid "To filter all databases on server, press Enter after a search term" msgstr "" -#: js/messages.php:537 +#: js/messages.php:538 #, php-format msgid "To filter all %s in database, press Enter after a search term" msgstr "" -#: js/messages.php:538 +#: js/messages.php:539 #, fuzzy #| msgid "Table" msgid "tables" msgstr "टेबल" -#: js/messages.php:539 +#: js/messages.php:540 msgid "views" msgstr "" -#: js/messages.php:540 +#: js/messages.php:541 msgid "procedures" msgstr "" -#: js/messages.php:541 +#: js/messages.php:542 msgid "events" msgstr "" -#: js/messages.php:542 +#: js/messages.php:543 #, fuzzy #| msgid "Action" msgid "functions" msgstr "कार्य" -#: js/messages.php:545 +#: js/messages.php:546 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:548 setup/lib/index.lib.php:167 +#: js/messages.php:549 setup/lib/index.lib.php:167 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2363,439 +2368,439 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:550 +#: js/messages.php:551 msgid ", latest stable version:" msgstr "" -#: js/messages.php:551 +#: js/messages.php:552 msgid "up to date" msgstr "" -#: js/messages.php:553 libraries/DisplayResults.class.php:4940 +#: js/messages.php:554 libraries/DisplayResults.class.php:4940 #: view_create.php:181 msgid "Create view" msgstr "" -#: js/messages.php:556 +#: js/messages.php:557 msgid "Send error report" msgstr "" -#: js/messages.php:557 +#: js/messages.php:558 msgid "Submit error report" msgstr "" -#: js/messages.php:559 +#: js/messages.php:560 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:561 +#: js/messages.php:562 msgid "Change report settings" msgstr "" -#: js/messages.php:562 +#: js/messages.php:563 msgid "Show report details" msgstr "" -#: js/messages.php:565 +#: js/messages.php:566 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:569 +#: js/messages.php:570 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " "the fields might be ignored, due to PHP's max_input_vars configuration." msgstr "" -#: js/messages.php:575 js/messages.php:588 +#: js/messages.php:576 js/messages.php:589 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:577 +#: js/messages.php:578 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:583 libraries/Error_Handler.class.php:348 +#: js/messages.php:584 libraries/Error_Handler.class.php:348 msgid "Ignore All" msgstr "" -#: js/messages.php:590 +#: js/messages.php:591 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:598 +#: js/messages.php:599 msgid "Execute this query again?" msgstr "" -#: js/messages.php:599 +#: js/messages.php:600 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:600 -msgid "Some error occurred while getting SQL debug info." -msgstr "" - #: js/messages.php:601 -#, php-format -msgid "%s queries executed %s times in %s seconds." +msgid "Some error occurred while getting SQL debug info." msgstr "" #: js/messages.php:602 #, php-format -msgid "%s argument(s) passed" +msgid "%s queries executed %s times in %s seconds." msgstr "" #: js/messages.php:603 +#, php-format +msgid "%s argument(s) passed" +msgstr "" + +#: js/messages.php:604 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:604 +#: js/messages.php:605 msgid "Hide arguments" msgstr "" -#: js/messages.php:605 libraries/Console.class.php:321 +#: js/messages.php:606 libraries/Console.class.php:321 msgid "Time taken:" msgstr "" -#: js/messages.php:606 +#: js/messages.php:607 msgid "" "Your web browser does not support local storage of settings or the quota " "limit has been reached, some features may not work properly for you. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:634 +#: js/messages.php:635 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:639 +#: js/messages.php:640 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:642 +#: js/messages.php:643 msgid "Today" msgstr "" -#: js/messages.php:646 +#: js/messages.php:647 msgid "January" msgstr "" -#: js/messages.php:647 +#: js/messages.php:648 msgid "February" msgstr "" -#: js/messages.php:648 +#: js/messages.php:649 msgid "March" msgstr "" -#: js/messages.php:649 +#: js/messages.php:650 msgid "April" msgstr "" -#: js/messages.php:650 +#: js/messages.php:651 msgid "May" msgstr "" -#: js/messages.php:651 +#: js/messages.php:652 msgid "June" msgstr "" -#: js/messages.php:652 +#: js/messages.php:653 msgid "July" msgstr "" -#: js/messages.php:653 +#: js/messages.php:654 msgid "August" msgstr "" -#: js/messages.php:654 +#: js/messages.php:655 msgid "September" msgstr "" -#: js/messages.php:655 +#: js/messages.php:656 msgid "October" msgstr "" -#: js/messages.php:656 +#: js/messages.php:657 msgid "November" msgstr "" -#: js/messages.php:657 +#: js/messages.php:658 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:664 libraries/Util.class.php:1628 +#: js/messages.php:665 libraries/Util.class.php:1628 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:666 libraries/Util.class.php:1630 +#: js/messages.php:667 libraries/Util.class.php:1630 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:668 libraries/Util.class.php:1632 +#: js/messages.php:669 libraries/Util.class.php:1632 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:670 libraries/Util.class.php:1634 +#: js/messages.php:671 libraries/Util.class.php:1634 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:672 libraries/Util.class.php:1636 +#: js/messages.php:673 libraries/Util.class.php:1636 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:674 libraries/Util.class.php:1638 +#: js/messages.php:675 libraries/Util.class.php:1638 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:676 libraries/Util.class.php:1640 +#: js/messages.php:677 libraries/Util.class.php:1640 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:678 libraries/Util.class.php:1642 +#: js/messages.php:679 libraries/Util.class.php:1642 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:680 libraries/Util.class.php:1644 +#: js/messages.php:681 libraries/Util.class.php:1644 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:682 libraries/Util.class.php:1646 +#: js/messages.php:683 libraries/Util.class.php:1646 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:684 libraries/Util.class.php:1648 +#: js/messages.php:685 libraries/Util.class.php:1648 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:686 libraries/Util.class.php:1650 +#: js/messages.php:687 libraries/Util.class.php:1650 msgid "Dec" msgstr "" -#: js/messages.php:692 +#: js/messages.php:693 msgid "Sunday" msgstr "" -#: js/messages.php:693 +#: js/messages.php:694 msgid "Monday" msgstr "" -#: js/messages.php:694 +#: js/messages.php:695 msgid "Tuesday" msgstr "" -#: js/messages.php:695 +#: js/messages.php:696 msgid "Wednesday" msgstr "" -#: js/messages.php:696 +#: js/messages.php:697 msgid "Thursday" msgstr "" -#: js/messages.php:697 +#: js/messages.php:698 msgid "Friday" msgstr "" -#: js/messages.php:698 +#: js/messages.php:699 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:705 +#: js/messages.php:706 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:707 libraries/Util.class.php:1655 +#: js/messages.php:708 libraries/Util.class.php:1655 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:709 libraries/Util.class.php:1657 +#: js/messages.php:710 libraries/Util.class.php:1657 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:711 libraries/Util.class.php:1659 +#: js/messages.php:712 libraries/Util.class.php:1659 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:713 libraries/Util.class.php:1661 +#: js/messages.php:714 libraries/Util.class.php:1661 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:715 libraries/Util.class.php:1663 +#: js/messages.php:716 libraries/Util.class.php:1663 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:717 libraries/Util.class.php:1665 +#: js/messages.php:718 libraries/Util.class.php:1665 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:724 +#: js/messages.php:725 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:726 +#: js/messages.php:727 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:728 +#: js/messages.php:729 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:730 +#: js/messages.php:731 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:732 +#: js/messages.php:733 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:734 +#: js/messages.php:735 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:736 +#: js/messages.php:737 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:740 +#: js/messages.php:741 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:747 +#: js/messages.php:748 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:750 +#: js/messages.php:751 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:762 +#: js/messages.php:763 msgid "Hour" msgstr "" -#: js/messages.php:763 +#: js/messages.php:764 msgid "Minute" msgstr "" -#: js/messages.php:764 +#: js/messages.php:765 msgid "Second" msgstr "" -#: js/messages.php:775 +#: js/messages.php:776 msgid "This field is required" msgstr "" -#: js/messages.php:776 +#: js/messages.php:777 msgid "Please fix this field" msgstr "" -#: js/messages.php:777 +#: js/messages.php:778 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:778 +#: js/messages.php:779 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:779 +#: js/messages.php:780 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:780 +#: js/messages.php:781 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:781 +#: js/messages.php:782 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:782 +#: js/messages.php:783 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:783 +#: js/messages.php:784 msgid "Please enter only digits" msgstr "" -#: js/messages.php:784 +#: js/messages.php:785 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:785 +#: js/messages.php:786 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:786 +#: js/messages.php:787 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:787 +#: js/messages.php:788 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:788 +#: js/messages.php:789 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:789 +#: js/messages.php:790 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:790 +#: js/messages.php:791 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:792 +#: js/messages.php:793 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:793 +#: js/messages.php:794 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:794 libraries/Message.class.php:199 +#: js/messages.php:795 libraries/Message.class.php:199 #: libraries/Util.class.php:657 libraries/core.lib.php:245 #: libraries/import.lib.php:181 libraries/insert_edit.lib.php:1170 #: tbl_operations.php:229 view_operations.php:63 @@ -3647,7 +3652,7 @@ msgstr "" #: libraries/tracking.lib.php:1621 #: templates/database/structure/table_header.phtml:30 #: templates/privileges/privileges_summary.phtml:22 -#: templates/table/structure/display_partitions.phtml:29 +#: templates/table/structure/display_partitions.phtml:32 #: templates/table/structure/table_structure_header.phtml:20 msgid "Action" msgstr "कार्य" @@ -3658,8 +3663,8 @@ msgid "Keyname" msgstr "" #: libraries/Index.class.php:697 -#: libraries/controllers/TableStructureController.class.php:954 -#: libraries/controllers/TableStructureController.class.php:959 +#: libraries/controllers/TableStructureController.class.php:1185 +#: libraries/controllers/TableStructureController.class.php:1190 #: libraries/tracking.lib.php:973 #: templates/columns_definitions/column_indexes.phtml:11 #: templates/table/structure/check_all_table_column.phtml:26 @@ -3691,9 +3696,9 @@ msgstr "" #: libraries/Index.class.php:703 libraries/rte/rte_events.lib.php:496 #: libraries/rte/rte_routines.lib.php:1039 libraries/tracking.lib.php:885 #: libraries/tracking.lib.php:979 -#: templates/columns_definitions/partitions_form.phtml:77 +#: templates/columns_definitions/partitions.phtml:79 #: templates/database/structure/table_header.phtml:84 -#: templates/table/structure/display_partitions.phtml:27 +#: templates/table/structure/display_partitions.phtml:30 msgid "Comment" msgstr "" @@ -3708,14 +3713,14 @@ msgstr "" #: libraries/Index.class.php:757 libraries/Util.class.php:3664 #: libraries/Util.class.php:3665 -#: libraries/controllers/TableStructureController.class.php:950 -#: libraries/controllers/TableStructureController.class.php:951 +#: libraries/controllers/TableStructureController.class.php:1181 +#: libraries/controllers/TableStructureController.class.php:1182 #: libraries/operations.lib.php:1595 libraries/rte/rte_list.lib.php:150 #: libraries/server_databases.lib.php:146 #: templates/database/structure/check_all_tables.phtml:16 #: templates/table/relation/foreign_key_row.phtml:71 #: templates/table/structure/check_all_table_column.phtml:15 -#: templates/table/structure/display_structure.phtml:189 +#: templates/table/structure/display_structure.phtml:190 msgid "Drop" msgstr "हटाउ" @@ -3825,7 +3830,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:558 #: libraries/plugins/export/ExportOdt.class.php:686 #: libraries/plugins/export/ExportPdf.class.php:283 -#: libraries/plugins/export/ExportSql.class.php:1917 +#: libraries/plugins/export/ExportSql.class.php:1918 #: libraries/plugins/export/ExportTexytext.class.php:504 #: libraries/plugins/export/ExportXml.class.php:123 #: libraries/rte/rte_words.lib.php:50 @@ -4447,23 +4452,29 @@ msgstr "" msgid "A collection of geometry objects of any type" msgstr "" -#: libraries/Types.class.php:760 +#: libraries/Types.class.php:502 +msgid "" +"Stores and enables efficient access to data in JSON (JavaScript Object " +"Notation) documents" +msgstr "" + +#: libraries/Types.class.php:769 msgctxt "numeric types" msgid "Numeric" msgstr "" -#: libraries/Types.class.php:778 +#: libraries/Types.class.php:787 msgctxt "date and time types" msgid "Date and time" msgstr "" -#: libraries/Types.class.php:787 libraries/normalization.lib.php:160 +#: libraries/Types.class.php:796 libraries/normalization.lib.php:160 #: normalization.php:24 msgctxt "string types" msgid "String" msgstr "" -#: libraries/Types.class.php:808 +#: libraries/Types.class.php:817 msgctxt "spatial types" msgid "Spatial" msgstr "" @@ -4615,7 +4626,7 @@ msgstr "" #: libraries/build_html_for_db.lib.php:33 libraries/import.lib.php:191 #: templates/database/structure/table_header.phtml:36 #: templates/table/structure/actions_in_table_structure.phtml:112 -#: templates/table/structure/display_partitions.phtml:24 +#: templates/table/structure/display_partitions.phtml:27 #: templates/table/structure/row_stats_table.phtml:42 msgid "Rows" msgstr "पङ्क्तिहरू" @@ -4694,7 +4705,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1575 setup/frames/index.inc.php:164 #: templates/columns_definitions/table_fields_definitions.phtml:8 #: templates/database/create_table.phtml:11 -#: templates/table/structure/display_partitions.phtml:20 +#: templates/table/structure/display_partitions.phtml:23 #: templates/table/structure/table_structure_header.phtml:5 msgid "Name" msgstr "" @@ -7484,7 +7495,8 @@ msgid "No data to display" msgstr "" #: libraries/controllers/TableIndexesController.class.php:160 -#: libraries/controllers/TableStructureController.class.php:738 +#: libraries/controllers/TableStructureController.class.php:733 +#: libraries/controllers/TableStructureController.class.php:969 #: tbl_addfield.php:92 #, php-format msgid "Table %1$s has been altered successfully." @@ -7518,32 +7530,33 @@ msgid_plural "The names '%s' are MySQL reserved keywords." msgstr[0] "" msgstr[1] "" -#: libraries/controllers/TableStructureController.class.php:241 +#: libraries/controllers/TableStructureController.class.php:251 msgid "No column selected." msgstr "" -#: libraries/controllers/TableStructureController.class.php:469 +#: libraries/controllers/TableStructureController.class.php:486 msgid "The columns have been moved successfully." msgstr "" -#: libraries/controllers/TableStructureController.class.php:732 +#: libraries/controllers/TableStructureController.class.php:744 +#: libraries/controllers/TableStructureController.class.php:1016 +#: libraries/tracking.lib.php:1094 +msgid "Query error" +msgstr "" + +#: libraries/controllers/TableStructureController.class.php:963 #, php-format msgid "" "Table %1$s has been altered successfully. Privileges have been adjusted." msgstr "" -#: libraries/controllers/TableStructureController.class.php:785 -#: libraries/tracking.lib.php:1094 -msgid "Query error" -msgstr "" - -#: libraries/controllers/TableStructureController.class.php:949 +#: libraries/controllers/TableStructureController.class.php:1180 #: templates/table/structure/check_all_table_column.phtml:11 msgid "Change" msgstr "" -#: libraries/controllers/TableStructureController.class.php:953 -#: libraries/controllers/TableStructureController.class.php:958 +#: libraries/controllers/TableStructureController.class.php:1184 +#: libraries/controllers/TableStructureController.class.php:1189 #: libraries/navigation/Nodes/Node_Index.class.php:30 #: libraries/tracking.lib.php:926 #: templates/columns_definitions/column_indexes.phtml:16 @@ -7554,20 +7567,20 @@ msgstr "" msgid "Index" msgstr "" -#: libraries/controllers/TableStructureController.class.php:955 -#: libraries/controllers/TableStructureController.class.php:960 +#: libraries/controllers/TableStructureController.class.php:1186 +#: libraries/controllers/TableStructureController.class.php:1191 #: templates/columns_definitions/column_indexes.phtml:26 msgid "Spatial" msgstr "" -#: libraries/controllers/TableStructureController.class.php:956 -#: libraries/controllers/TableStructureController.class.php:961 +#: libraries/controllers/TableStructureController.class.php:1187 +#: libraries/controllers/TableStructureController.class.php:1192 #: templates/columns_definitions/column_indexes.phtml:21 #: templates/table/structure/check_all_table_column.phtml:40 msgid "Fulltext" msgstr "" -#: libraries/controllers/TableStructureController.class.php:964 +#: libraries/controllers/TableStructureController.class.php:1195 msgid "Distinct values" msgstr "" @@ -8900,7 +8913,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/navigation/Nodes/Node_View_Container.class.php:27 #: libraries/plugins/export/ExportXml.class.php:127 -#: templates/database/structure/show_create.phtml:30 +#: templates/database/structure/show_create.phtml:32 msgid "Views" msgstr "" @@ -9335,32 +9348,32 @@ msgid "Delete the table (DROP)" msgstr "" #: libraries/operations.lib.php:1582 -#: templates/table/structure/display_structure.phtml:181 +#: templates/table/structure/display_structure.phtml:182 msgid "Analyze" msgstr "" #: libraries/operations.lib.php:1583 -#: templates/table/structure/display_structure.phtml:182 +#: templates/table/structure/display_structure.phtml:183 msgid "Check" msgstr "" #: libraries/operations.lib.php:1584 -#: templates/table/structure/display_structure.phtml:183 +#: templates/table/structure/display_structure.phtml:184 msgid "Optimize" msgstr "" #: libraries/operations.lib.php:1585 -#: templates/table/structure/display_structure.phtml:184 +#: templates/table/structure/display_structure.phtml:185 msgid "Rebuild" msgstr "" #: libraries/operations.lib.php:1586 -#: templates/table/structure/display_structure.phtml:185 +#: templates/table/structure/display_structure.phtml:186 msgid "Repair" msgstr "" #: libraries/operations.lib.php:1587 -#: templates/table/structure/display_structure.phtml:186 +#: templates/table/structure/display_structure.phtml:187 msgid "Truncate" msgstr "" @@ -9378,6 +9391,7 @@ msgid "Partition %s" msgstr "" #: libraries/operations.lib.php:1641 +#: templates/table/structure/display_partitions.phtml:136 msgid "Remove partitioning" msgstr "" @@ -9582,7 +9596,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:202 #: libraries/plugins/export/ExportOdt.class.php:257 -#: libraries/plugins/export/ExportSql.class.php:2198 +#: libraries/plugins/export/ExportSql.class.php:2199 #: libraries/plugins/export/ExportTexytext.class.php:184 msgid "Dumping data for table" msgstr "" @@ -9606,21 +9620,21 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:545 #: libraries/plugins/export/ExportOdt.class.php:672 -#: libraries/plugins/export/ExportSql.class.php:1898 +#: libraries/plugins/export/ExportSql.class.php:1899 #: libraries/plugins/export/ExportTexytext.class.php:493 msgid "Table structure for table" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:565 #: libraries/plugins/export/ExportOdt.class.php:696 -#: libraries/plugins/export/ExportSql.class.php:1953 +#: libraries/plugins/export/ExportSql.class.php:1954 #: libraries/plugins/export/ExportTexytext.class.php:509 msgid "Structure for view" msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:574 #: libraries/plugins/export/ExportOdt.class.php:708 -#: libraries/plugins/export/ExportSql.class.php:1989 +#: libraries/plugins/export/ExportSql.class.php:1990 #: libraries/plugins/export/ExportTexytext.class.php:516 msgid "Stand-in structure for view" msgstr "" @@ -9710,7 +9724,7 @@ msgid "Database:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:307 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 msgid "Data:" msgstr "" @@ -9802,7 +9816,7 @@ msgid "Data creation options" msgstr "" #: libraries/plugins/export/ExportSql.class.php:341 -#: libraries/plugins/export/ExportSql.class.php:2144 +#: libraries/plugins/export/ExportSql.class.php:2145 msgid "Truncate table before insert" msgstr "" @@ -9872,7 +9886,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:516 #: libraries/plugins/export/ExportSql.class.php:552 #: libraries/plugins/export/ExportSql.class.php:1482 -#: libraries/plugins/export/ExportSql.class.php:1942 +#: libraries/plugins/export/ExportSql.class.php:1943 msgid "alias export may not work reliably in all cases." msgstr "" @@ -9937,24 +9951,24 @@ msgstr "" msgid "AUTO_INCREMENT for table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1751 +#: libraries/plugins/export/ExportSql.class.php:1752 msgid "MIME TYPES FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1776 +#: libraries/plugins/export/ExportSql.class.php:1777 msgid "RELATIONS FOR TABLE" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1939 +#: libraries/plugins/export/ExportSql.class.php:1940 msgid "It appears your table uses triggers;" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:1971 +#: libraries/plugins/export/ExportSql.class.php:1972 #, php-format msgid "Structure for view %s exported as a table" msgstr "" -#: libraries/plugins/export/ExportSql.class.php:2060 +#: libraries/plugins/export/ExportSql.class.php:2061 msgid "Error reading data:" msgstr "" @@ -13757,7 +13771,7 @@ msgid "Pick from Central Columns" msgstr "" #: templates/columns_definitions/column_virtuality.phtml:46 -#: templates/table/structure/display_partitions.phtml:22 +#: templates/table/structure/display_partitions.phtml:25 msgid "Expression" msgstr "" @@ -13771,68 +13785,68 @@ msgstr "" msgid "after %s" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:9 +#: templates/columns_definitions/partitions.phtml:9 msgid "Partition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:25 -#: templates/columns_definitions/partitions_form.phtml:54 +#: templates/columns_definitions/partitions.phtml:25 +#: templates/columns_definitions/partitions.phtml:54 msgid "Expression or column list" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:30 +#: templates/columns_definitions/partitions.phtml:30 #, fuzzy #| msgid "Creation:" msgid "Partitions:" msgstr "निर्माण:" -#: templates/columns_definitions/partitions_form.phtml:38 +#: templates/columns_definitions/partitions.phtml:38 msgid "Subpartition by:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:59 +#: templates/columns_definitions/partitions.phtml:59 msgid "Subpartitions:" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:71 +#: templates/columns_definitions/partitions.phtml:71 msgid "Partition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:72 +#: templates/columns_definitions/partitions.phtml:73 msgid "Values" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:74 +#: templates/columns_definitions/partitions.phtml:76 msgid "Subpartition" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:76 +#: templates/columns_definitions/partitions.phtml:78 msgid "Engine" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:78 +#: templates/columns_definitions/partitions.phtml:80 msgid "Data directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:79 +#: templates/columns_definitions/partitions.phtml:81 msgid "Index directory" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:80 +#: templates/columns_definitions/partitions.phtml:82 msgid "Max rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:81 +#: templates/columns_definitions/partitions.phtml:83 msgid "Min rows" msgstr "" -#: templates/columns_definitions/partitions_form.phtml:82 +#: templates/columns_definitions/partitions.phtml:84 #, fuzzy #| msgid "Tables" msgid "Table space" msgstr "टेबलहरु" -#: templates/columns_definitions/partitions_form.phtml:83 +#: templates/columns_definitions/partitions.phtml:85 msgid "Node group" msgstr "" @@ -14536,26 +14550,41 @@ msgid "at beginning of table" msgstr "" #: templates/table/structure/display_partitions.phtml:3 -#: templates/table/structure/display_structure.phtml:193 +#: templates/table/structure/display_structure.phtml:194 msgid "Partitions" msgstr "" #: templates/table/structure/display_partitions.phtml:7 +msgid "No partitioning defined!" +msgstr "" + +#: templates/table/structure/display_partitions.phtml:10 msgid "Partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:12 +#: templates/table/structure/display_partitions.phtml:15 msgid "Sub partitioned by:" msgstr "" -#: templates/table/structure/display_partitions.phtml:25 +#: templates/table/structure/display_partitions.phtml:28 msgid "Data length" msgstr "" -#: templates/table/structure/display_partitions.phtml:26 +#: templates/table/structure/display_partitions.phtml:29 msgid "Index length" msgstr "" +#: templates/table/structure/display_partitions.phtml:134 +#, fuzzy +#| msgid "Creation:" +msgid "Partition table" +msgstr "निर्माण:" + +#: templates/table/structure/display_partitions.phtml:137 +#: templates/table/structure/partition_definition_form.phtml:7 +msgid "Edit partitioning" +msgstr "" + #: templates/table/structure/display_structure.phtml:140 view_create.php:181 msgid "Edit view" msgstr "" diff --git a/po/nl.po b/po/nl.po index cb55d341e4..0936f345d2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2015-09-28 18:02-0400\n" +"POT-Creation-Date: 2015-10-01 07:36-0400\n" "PO-Revision-Date: 2015-09-06 16:42+0200\n" "Last-Translator: dingo thirteen \n" "Language-Team: Dutch " -#: js/messages.php:85 +#: js/messages.php:86 msgid "" "Are you sure you wish to change all the column collations and convert the " "data?" @@ -1006,161 +1012,161 @@ msgstr "" "Weet u zeker dat u alle kolom vergelijkingen wil wijzigen en de data " "converteren?" -#: js/messages.php:88 +#: js/messages.php:89 msgid "Save & close" msgstr "Opslaan & sluiten" -#: js/messages.php:89 libraries/config/FormDisplay.tpl.php:423 +#: js/messages.php:90 libraries/config/FormDisplay.tpl.php:423 #: libraries/insert_edit.lib.php:1548 prefs_manage.php:361 #: prefs_manage.php:372 msgid "Reset" msgstr "Herstellen" -#: js/messages.php:90 +#: js/messages.php:91 msgid "Reset all" msgstr "Alles terugzetten naar standaardwaarden" -#: js/messages.php:93 +#: js/messages.php:94 msgid "Missing value in the form!" msgstr "Er ontbreekt een waarde in het formulier!" -#: js/messages.php:94 +#: js/messages.php:95 msgid "Select at least one of the options!" msgstr "Selecteer ten minste een van de opties!" -#: js/messages.php:95 +#: js/messages.php:96 msgid "Please enter a valid number!" msgstr "Vul een geldig nummer in!" -#: js/messages.php:96 +#: js/messages.php:97 msgid "Please enter a valid length!" msgstr "Vul een geldige lengte in!" -#: js/messages.php:97 +#: js/messages.php:98 msgid "Add index" msgstr "Index toevoegen" -#: js/messages.php:98 +#: js/messages.php:99 msgid "Edit index" msgstr "Index bewerken" -#: js/messages.php:99 templates/table/index_form.phtml:232 +#: js/messages.php:100 templates/table/index_form.phtml:232 #, php-format msgid "Add %s column(s) to index" msgstr "Voeg %s kolom(men) toe aan index" -#: js/messages.php:100 +#: js/messages.php:101 msgid "Create single-column index" msgstr "Index van één kolom maken" -#: js/messages.php:101 +#: js/messages.php:102 msgid "Create composite index" msgstr "Samengestelde index maken" -#: js/messages.php:102 +#: js/messages.php:103 msgid "Composite with:" msgstr "Samenstellen met:" -#: js/messages.php:103 +#: js/messages.php:104 msgid "Please select column(s) for the index." msgstr "Gelieve de kolom(men) voor de index te selecteren." -#: js/messages.php:106 templates/table/structure/add_column.phtml:1 +#: js/messages.php:107 templates/table/structure/add_column.phtml:1 msgid "You have to add at least one column." msgstr "U moet minstens één kolom toevoegen." -#: js/messages.php:109 libraries/insert_edit.lib.php:1546 -#: templates/columns_definitions/column_definitions_form.phtml:155 +#: js/messages.php:110 libraries/insert_edit.lib.php:1546 +#: templates/columns_definitions/column_definitions_form.phtml:154 #: templates/table/index_form.phtml:237 #: templates/table/relation/common_form.phtml:108 msgid "Preview SQL" msgstr "SQL voorbeeld" -#: js/messages.php:112 +#: js/messages.php:113 msgid "Simulate query" msgstr "Query simuleren" -#: js/messages.php:113 +#: js/messages.php:114 msgid "Matched rows:" msgstr "Overeenkomende rijen:" -#: js/messages.php:114 libraries/Util.class.php:681 +#: js/messages.php:115 libraries/Util.class.php:681 msgid "SQL query:" msgstr "SQL-query:" #. l10n: Default label for the y-Axis of Charts -#: js/messages.php:118 +#: js/messages.php:119 msgid "Y values" msgstr "Y-waarden" -#: js/messages.php:121 +#: js/messages.php:122 msgid "The host name is empty!" msgstr "De hostnaam is leeg!" -#: js/messages.php:122 +#: js/messages.php:123 msgid "The user name is empty!" msgstr "De gebruikersnaam is leeg!" -#: js/messages.php:123 libraries/server_privileges.lib.php:1956 +#: js/messages.php:124 libraries/server_privileges.lib.php:1956 #: user_password.php:116 msgid "The password is empty!" msgstr "Het wachtwoord is leeg!" -#: js/messages.php:124 libraries/server_privileges.lib.php:1954 +#: js/messages.php:125 libraries/server_privileges.lib.php:1954 #: user_password.php:119 msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:125 +#: js/messages.php:126 msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:126 js/messages.php:187 libraries/tracking.lib.php:458 +#: js/messages.php:127 js/messages.php:188 libraries/tracking.lib.php:458 #: libraries/tracking.lib.php:828 msgid "Close" msgstr "Sluiten" -#: js/messages.php:129 +#: js/messages.php:130 msgid "Template was created." msgstr "Template werd aangemaakt." -#: js/messages.php:130 +#: js/messages.php:131 msgid "Template was loaded." msgstr "Template werd geladen." -#: js/messages.php:131 +#: js/messages.php:132 msgid "Template was updated." msgstr "Template werd aangepast." -#: js/messages.php:132 +#: js/messages.php:133 msgid "Template was deleted." msgstr "Template werd verwijderd." #. l10n: Other, small valued, queries -#: js/messages.php:135 libraries/ServerStatusData.class.php:133 +#: js/messages.php:136 libraries/ServerStatusData.class.php:133 #: libraries/server_status_queries.lib.php:146 msgid "Other" msgstr "Andere" #. l10n: Thousands separator -#: js/messages.php:137 libraries/Util.class.php:1465 +#: js/messages.php:138 libraries/Util.class.php:1465 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:139 libraries/Util.class.php:1467 +#: js/messages.php:140 libraries/Util.class.php:1467 msgid "." msgstr "," -#: js/messages.php:141 +#: js/messages.php:142 msgid "Connections / Processes" msgstr "Verbindingen / Processen" -#: js/messages.php:144 +#: js/messages.php:145 msgid "Local monitor configuration incompatible!" msgstr "Configuratie van lokale monitoring is niet geldig!" -#: js/messages.php:145 +#: js/messages.php:146 msgid "" "The chart arrangement configuration in your browsers local storage is not " "compatible anymore to the newer version of the monitor dialog. It is very " @@ -1173,155 +1179,155 @@ msgstr "" "Reset de instellingen naar de standaardwaarden in het menu Instellingen." -#: js/messages.php:147 +#: js/messages.php:148 msgid "Query cache efficiency" msgstr "Querycache-efficiëntie" -#: js/messages.php:148 +#: js/messages.php:149 msgid "Query cache usage" msgstr "Querycache-gebruik" -#: js/messages.php:149 +#: js/messages.php:150 msgid "Query cache used" msgstr "Querycache gebruikt" -#: js/messages.php:151 +#: js/messages.php:152 msgid "System CPU usage" msgstr "Systeem CPU-gebruik" -#: js/messages.php:152 +#: js/messages.php:153 msgid "System memory" msgstr "Systeemgeheugen" -#: js/messages.php:153 +#: js/messages.php:154 msgid "System swap" msgstr "Systeemwisselbestand" -#: js/messages.php:155 +#: js/messages.php:156 msgid "Average load" msgstr "Gemiddelde systeembelasting" -#: js/messages.php:156 +#: js/messages.php:157 msgid "Total memory" msgstr "Totaal geheugen" -#: js/messages.php:157 +#: js/messages.php:158 msgid "Cached memory" msgstr "Gecached geheugen" -#: js/messages.php:158 +#: js/messages.php:159 msgid "Buffered memory" msgstr "Gebufferd geheugen" -#: js/messages.php:159 +#: js/messages.php:160 msgid "Free memory" msgstr "Vrij geheugen" -#: js/messages.php:160 +#: js/messages.php:161 msgid "Used memory" msgstr "Gebruikt geheugen" -#: js/messages.php:162 +#: js/messages.php:163 msgid "Total swap" msgstr "Totaal wisselbestand" -#: js/messages.php:163 +#: js/messages.php:164 msgid "Cached swap" msgstr "Gecached wisselbestand" -#: js/messages.php:164 +#: js/messages.php:165 msgid "Used swap" msgstr "Wisselbestand in gebruik" -#: js/messages.php:165 +#: js/messages.php:166 msgid "Free swap" msgstr "Vrije ruimte wisselbestand" -#: js/messages.php:167 +#: js/messages.php:168 msgid "Bytes sent" msgstr "Doorgestuurde bytes" -#: js/messages.php:168 +#: js/messages.php:169 msgid "Bytes received" msgstr "Ontvangen bytes" -#: js/messages.php:169 libraries/server_status.lib.php:235 +#: js/messages.php:170 libraries/server_status.lib.php:235 msgid "Connections" msgstr "Verbindingen" -#: js/messages.php:170 libraries/ServerStatusData.class.php:429 +#: js/messages.php:171 libraries/ServerStatusData.class.php:429 #: libraries/server_status_processes.lib.php:130 msgid "Processes" msgstr "Processen" #. l10n: shortcuts for Byte -#: js/messages.php:173 libraries/Util.class.php:1409 +#: js/messages.php:174 libraries/Util.class.php:1409 msgid "B" msgstr "B" #. l10n: shortcuts for Kilobyte -#: js/messages.php:174 libraries/Util.class.php:1411 +#: js/messages.php:175 libraries/Util.class.php:1411 #: libraries/server_status_monitor.lib.php:215 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte -#: js/messages.php:175 libraries/Util.class.php:1413 +#: js/messages.php:176 libraries/Util.class.php:1413 #: libraries/display_export.lib.php:840 #: libraries/server_status_monitor.lib.php:216 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Gigabyte -#: js/messages.php:176 libraries/Util.class.php:1415 +#: js/messages.php:177 libraries/Util.class.php:1415 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: js/messages.php:177 libraries/Util.class.php:1417 +#: js/messages.php:178 libraries/Util.class.php:1417 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: js/messages.php:178 libraries/Util.class.php:1419 +#: js/messages.php:179 libraries/Util.class.php:1419 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: js/messages.php:179 libraries/Util.class.php:1421 +#: js/messages.php:180 libraries/Util.class.php:1421 msgid "EiB" msgstr "EiB" -#: js/messages.php:180 +#: js/messages.php:181 #, php-format msgid "%d table(s)" msgstr "%d tabel(len)" #. l10n: Questions is the name of a MySQL Status variable -#: js/messages.php:183 +#: js/messages.php:184 msgid "Questions" msgstr "Questions" -#: js/messages.php:184 libraries/server_status.lib.php:143 +#: js/messages.php:185 libraries/server_status.lib.php:143 msgid "Traffic" msgstr "Verkeer" -#: js/messages.php:185 libraries/Menu.class.php:584 +#: js/messages.php:186 libraries/Menu.class.php:584 #: libraries/Util.class.php:4291 libraries/server_status_monitor.lib.php:255 msgid "Settings" msgstr "Instellingen" -#: js/messages.php:186 +#: js/messages.php:187 msgid "Add chart to grid" msgstr "Grafiek toevoegen aan raster" -#: js/messages.php:188 +#: js/messages.php:189 msgid "Please add at least one variable to the series!" msgstr "Voeg tenminste één variabele toe aan de reeks!" -#: js/messages.php:189 libraries/DisplayResults.class.php:1493 +#: js/messages.php:190 libraries/DisplayResults.class.php:1493 #: libraries/config.values.php:69 libraries/display_export.lib.php:689 -#: libraries/plugins/export/ExportSql.class.php:2042 +#: libraries/plugins/export/ExportSql.class.php:2043 #: libraries/plugins/schema/SchemaPdf.class.php:102 #: libraries/server_status_monitor.lib.php:234 #: libraries/server_status_processes.lib.php:281 @@ -1333,47 +1339,47 @@ msgstr "Voeg tenminste één variabele toe aan de reeks!" msgid "None" msgstr "Geen" -#: js/messages.php:190 +#: js/messages.php:191 msgid "Resume monitor" msgstr "Monitor heropstarten" -#: js/messages.php:191 +#: js/messages.php:192 msgid "Pause monitor" msgstr "Monitor pauzeren" -#: js/messages.php:192 libraries/server_status_processes.lib.php:37 +#: js/messages.php:193 libraries/server_status_processes.lib.php:37 msgid "Start auto refresh" msgstr "Start automatisch vernieuwen" -#: js/messages.php:193 +#: js/messages.php:194 msgid "Stop auto refresh" msgstr "Stop automatisch vernieuwen" -#: js/messages.php:195 +#: js/messages.php:196 msgid "general_log and slow_query_log are enabled." msgstr "general_log en slow_query_log zijn ingeschakeld." -#: js/messages.php:196 +#: js/messages.php:197 msgid "general_log is enabled." msgstr "general_log is ingeschakeld." -#: js/messages.php:197 +#: js/messages.php:198 msgid "slow_query_log is enabled." msgstr "slow_query_log is ingeschakeld." -#: js/messages.php:198 +#: js/messages.php:199 msgid "slow_query_log and general_log are disabled." msgstr "slow_query_log en general_log zijn uitgeschakeld." -#: js/messages.php:199 +#: js/messages.php:200 msgid "log_output is not set to TABLE." msgstr "log_output heeft niet TABLE als instelling." -#: js/messages.php:200 +#: js/messages.php:201 msgid "log_output is set to TABLE." msgstr "log_output is ingesteld op TABLE." -#: js/messages.php:201 +#: js/messages.php:202 #, php-format msgid "" "slow_query_log is enabled, but the server logs only queries that take longer " @@ -1384,12 +1390,12 @@ msgstr "" "duren dan %d seconden. Het is aangeraden om long_query_time in te stellen op " "0-2 seconden, afhankelijk van uw systeem." -#: js/messages.php:202 +#: js/messages.php:203 #, php-format msgid "long_query_time is set to %d second(s)." msgstr "long_query_time is ingesteld op %d seconde(n)." -#: js/messages.php:203 +#: js/messages.php:204 msgid "" "Following settings will be applied globally and reset to default on server " "restart:" @@ -1398,30 +1404,30 @@ msgstr "" "de standaardwaarde bij herstart van de server:" #. l10n: %s is FILE or TABLE -#: js/messages.php:205 +#: js/messages.php:206 #, php-format msgid "Set log_output to %s" msgstr "log_ouput instellen op %s" #. l10n: Enable in this context means setting a status variable to ON -#: js/messages.php:207 +#: js/messages.php:208 #, php-format msgid "Enable %s" msgstr "%s inschakelen" #. l10n: Disable in this context means setting a status variable to OFF -#: js/messages.php:209 +#: js/messages.php:210 #, php-format msgid "Disable %s" msgstr "%s uitschakelen" #. l10n: %d seconds -#: js/messages.php:211 +#: js/messages.php:212 #, php-format msgid "Set long_query_time to %d seconds." msgstr "long_query_time instellen op %d seconden." -#: js/messages.php:213 +#: js/messages.php:214 msgid "" "You can't change these variables. Please log in as root or contact your " "database administrator." @@ -1429,57 +1435,57 @@ msgstr "" "U kan deze variabelen niet wijzigen. Log in als root of neem contact op met " "de databasebeheerder." -#: js/messages.php:216 +#: js/messages.php:217 msgid "Change settings" msgstr "Instellingen wijzigen" -#: js/messages.php:217 +#: js/messages.php:218 msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:219 templates/table/chart/tbl_chart.phtml:53 +#: js/messages.php:220 templates/table/chart/tbl_chart.phtml:53 msgid "Chart title" msgstr "Grafiektitel" #. l10n: As in differential values -#: js/messages.php:221 +#: js/messages.php:222 msgid "Differential" msgstr "Verschil" -#: js/messages.php:222 +#: js/messages.php:223 #, php-format msgid "Divided by %s" msgstr "Gedeeld door %s" -#: js/messages.php:223 +#: js/messages.php:224 msgid "Unit" msgstr "Eenheid" -#: js/messages.php:225 +#: js/messages.php:226 msgid "From slow log" msgstr "Uit het logbestand van trage query's" -#: js/messages.php:226 +#: js/messages.php:227 msgid "From general log" msgstr "Uit het algemene logbestand" -#: js/messages.php:228 +#: js/messages.php:229 msgid "The database name is not known for this query in the server's logs." msgstr "De databasenaam is niet gekend voor deze query in de serverlogboeken." -#: js/messages.php:230 +#: js/messages.php:231 msgid "Analysing logs" msgstr "Bezig met analyseren van logbestanden" -#: js/messages.php:231 +#: js/messages.php:232 msgid "Analysing & loading logs. This may take a while." msgstr "Logbestanden worden geladen en geanalyseerd. Dit kan even duren." -#: js/messages.php:232 +#: js/messages.php:233 msgid "Cancel request" msgstr "Aanvraag onderbreken" -#: js/messages.php:233 +#: js/messages.php:234 msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1489,7 +1495,7 @@ msgstr "" "de SQL-query werd gebruikt als criterium voor het groeperen, dus andere " "eigenschappen van query's, zoals de starttijd, kunnen verschillend zijn." -#: js/messages.php:234 +#: js/messages.php:235 msgid "" "Since grouping of INSERTs queries has been selected, INSERT queries into the " "same table are also being grouped together, disregarding of the inserted " @@ -1499,32 +1505,32 @@ msgstr "" "query's voor dezelfde tabel ook gegroepeerd worden, zonder rekening te " "houden met de gegevens die ingevoegd worden." -#: js/messages.php:235 +#: js/messages.php:236 msgid "Log data loaded. Queries executed in this time span:" msgstr "Loggegevens zijn geladen. Aantal ondertussen uitgevoerde query's:" -#: js/messages.php:237 +#: js/messages.php:238 msgid "Jump to Log table" msgstr "Ga naar tabel Log" -#: js/messages.php:238 +#: js/messages.php:239 msgid "No data found" msgstr "Geen gegevens gevonden" -#: js/messages.php:239 +#: js/messages.php:240 msgid "Log analysed, but no data found in this time span." msgstr "" "Log is geanalyseerd, maar in deze periode zijn er geen gegevens gevonden." -#: js/messages.php:241 +#: js/messages.php:242 msgid "Analyzing…" msgstr "Gegevens worden geanalyseerd…" -#: js/messages.php:242 +#: js/messages.php:243 msgid "Explain output" msgstr "Verklaar resultaat" -#: js/messages.php:243 libraries/Menu.class.php:550 +#: js/messages.php:244 libraries/Menu.class.php:550 #: libraries/Util.class.php:4287 libraries/config.values.php:104 #: libraries/rte/rte_events.lib.php:393 libraries/rte/rte_list.lib.php:101 #: libraries/server_status_processes.lib.php:92 libraries/tracking.lib.php:279 @@ -1532,7 +1538,7 @@ msgstr "Verklaar resultaat" msgid "Status" msgstr "Status" -#: js/messages.php:244 js/messages.php:761 +#: js/messages.php:245 js/messages.php:762 #: libraries/plugins/export/ExportHtmlword.class.php:472 #: libraries/plugins/export/ExportOdt.class.php:588 #: libraries/plugins/export/ExportTexytext.class.php:427 @@ -1542,60 +1548,60 @@ msgstr "Status" msgid "Time" msgstr "Tijd" -#: js/messages.php:245 +#: js/messages.php:246 msgid "Total time:" msgstr "Totale tijd:" -#: js/messages.php:246 +#: js/messages.php:247 msgid "Profiling results" msgstr "Profiling-resultaten" -#: js/messages.php:247 +#: js/messages.php:248 msgctxt "Display format" msgid "Table" msgstr "Tabel" -#: js/messages.php:248 +#: js/messages.php:249 msgid "Chart" msgstr "Grafiek" #. l10n: A collection of available filters -#: js/messages.php:251 +#: js/messages.php:252 msgid "Log table filter options" msgstr "Filteropties voor tabel Log" #. l10n: Filter as in "Start Filtering" -#: js/messages.php:253 +#: js/messages.php:254 msgid "Filter" msgstr "Filter toepassen" -#: js/messages.php:254 +#: js/messages.php:255 msgid "Filter queries by word/regexp:" msgstr "Query's filteren op woord/regexp:" -#: js/messages.php:255 +#: js/messages.php:256 msgid "Group queries, ignoring variable data in WHERE clauses" msgstr "" "Query's groeperen, verschillende parameter waarden in WHERE-statements " "worden genegeerd" -#: js/messages.php:256 +#: js/messages.php:257 msgid "Sum of grouped rows:" msgstr "Aantal gegroepeerde rijen:" -#: js/messages.php:257 +#: js/messages.php:258 msgid "Total:" msgstr "Totaal:" -#: js/messages.php:259 +#: js/messages.php:260 msgid "Loading logs" msgstr "Logboeken worden geladen" -#: js/messages.php:260 +#: js/messages.php:261 msgid "Monitor refresh failed" msgstr "Verversen van monitor mislukt" -#: js/messages.php:261 +#: js/messages.php:262 msgid "" "While requesting new chart data the server returned an invalid response. " "This is most likely because your session expired. Reloading the page and " @@ -1605,28 +1611,28 @@ msgstr "" "gegevens. Dit is waarschijnlijk omdat je sessie afgelopen is. Verversen van " "de pagina en opnieuw aanmelden zou dit probleem moeten oplossen." -#: js/messages.php:262 +#: js/messages.php:263 msgid "Reload page" msgstr "Pagina verversen" -#: js/messages.php:264 +#: js/messages.php:265 msgid "Affected rows:" msgstr "Getroffen rijen:" -#: js/messages.php:267 +#: js/messages.php:268 msgid "Failed parsing config file. It doesn't seem to be valid JSON code." msgstr "" "Verwerken van het configuratiebestand is mislukt. Het is geen geldig JSON-" "formaat." -#: js/messages.php:269 +#: js/messages.php:270 msgid "" "Failed building chart grid with imported config. Resetting to default config…" msgstr "" "Opbouwen van het raster met grafieken aan de hand van de geïmporteerde " "configuratie is mislukt. Standaard configuratie wordt gebruikt in de plaats…" -#: js/messages.php:270 libraries/Menu.class.php:357 +#: js/messages.php:271 libraries/Menu.class.php:357 #: libraries/Menu.class.php:459 libraries/Menu.class.php:580 #: libraries/Util.class.php:4290 libraries/Util.class.php:4305 #: libraries/Util.class.php:4322 libraries/config/messages.inc.php:260 @@ -1636,59 +1642,59 @@ msgstr "" msgid "Import" msgstr "Importeren" -#: js/messages.php:271 +#: js/messages.php:272 msgid "Import monitor configuration" msgstr "Importeer monitor configuratie" -#: js/messages.php:272 +#: js/messages.php:273 msgid "Please select the file you want to import." msgstr "Selecteer het bestand dat u wil importeren." -#: js/messages.php:273 +#: js/messages.php:274 msgid "No files available on server for import!" msgstr "Geen bestanden beschikbaar op de server om te importeren!" -#: js/messages.php:275 +#: js/messages.php:276 msgid "Analyse query" msgstr "Analyseer query" -#: js/messages.php:279 +#: js/messages.php:280 msgid "Advisor system" msgstr "Adviessysteem" -#: js/messages.php:280 +#: js/messages.php:281 msgid "Possible performance issues" msgstr "Mogelijke performantieproblemen" -#: js/messages.php:281 +#: js/messages.php:282 msgid "Issue" msgstr "Probleem" -#: js/messages.php:282 +#: js/messages.php:283 msgid "Recommendation" msgstr "Aanbeveling" -#: js/messages.php:283 +#: js/messages.php:284 msgid "Rule details" msgstr "Regeldetails" -#: js/messages.php:284 +#: js/messages.php:285 msgid "Justification" msgstr "Rechtvaardiging" -#: js/messages.php:285 +#: js/messages.php:286 msgid "Used variable / formula" msgstr "Gebruikte variabele / formule" -#: js/messages.php:286 +#: js/messages.php:287 msgid "Test" msgstr "Test" -#: js/messages.php:289 +#: js/messages.php:290 msgid "Formatting SQL…" msgstr "Aanmaken SQL…" -#: js/messages.php:293 libraries/server_variables.lib.php:159 +#: js/messages.php:294 libraries/server_variables.lib.php:159 #: templates/database/designer/aggregate_query_panel.phtml:63 #: templates/database/designer/delete_relation_panel.phtml:28 #: templates/database/designer/having_query_panel.phtml:117 @@ -1699,59 +1705,59 @@ msgstr "Aanmaken SQL…" msgid "Cancel" msgstr "Annuleren" -#: js/messages.php:296 libraries/Header.class.php:462 +#: js/messages.php:297 libraries/Header.class.php:462 msgid "Page-related settings" msgstr "Pagina gerelateerde instellingen" -#: js/messages.php:297 libraries/config/FormDisplay.tpl.php:421 +#: js/messages.php:298 libraries/config/FormDisplay.tpl.php:421 msgid "Apply" msgstr "Toepassen" -#: js/messages.php:300 libraries/navigation/NavigationHeader.class.php:60 +#: js/messages.php:301 libraries/navigation/NavigationHeader.class.php:60 #: libraries/server_status_monitor.lib.php:121 msgid "Loading…" msgstr "Laden…" -#: js/messages.php:301 +#: js/messages.php:302 msgid "Request aborted!!" msgstr "Aanvraag afgebroken!" -#: js/messages.php:302 +#: js/messages.php:303 msgid "Processing request" msgstr "Bezig met verwerken" -#: js/messages.php:303 +#: js/messages.php:304 msgid "Request failed!!" msgstr "Aanvraag gefaald!!" -#: js/messages.php:304 +#: js/messages.php:305 msgid "Error in processing request" msgstr "Fout tijdens het uitvoeren van de opdracht" -#: js/messages.php:305 +#: js/messages.php:306 #, php-format msgid "Error code: %s" msgstr "Foutcode: %s" -#: js/messages.php:306 +#: js/messages.php:307 #, php-format msgid "Error text: %s" msgstr "Foutomschrijving: %s" -#: js/messages.php:307 libraries/db_common.inc.php:69 +#: js/messages.php:308 libraries/db_common.inc.php:69 #: libraries/db_table_exists.lib.php:30 libraries/server_databases.lib.php:461 msgid "No databases selected." msgstr "Er zijn geen databases geselecteerd." -#: js/messages.php:308 +#: js/messages.php:309 msgid "Dropping column" msgstr "Kolom laten vervallen" -#: js/messages.php:309 +#: js/messages.php:310 msgid "Adding primary key" msgstr "Een primaire sleutel toevoegen" -#: js/messages.php:310 +#: js/messages.php:311 #: templates/database/designer/aggregate_query_panel.phtml:59 #: templates/database/designer/having_query_panel.phtml:113 #: templates/database/designer/new_relation_panel.phtml:87 @@ -1761,56 +1767,56 @@ msgstr "Een primaire sleutel toevoegen" msgid "OK" msgstr "Correct" -#: js/messages.php:311 +#: js/messages.php:312 msgid "Click to dismiss this notification" msgstr "Klik om deze melding te sluiten" -#: js/messages.php:314 +#: js/messages.php:315 msgid "Renaming databases" msgstr "Database hernoemen" -#: js/messages.php:315 +#: js/messages.php:316 msgid "Copying database" msgstr "Database kopiëren" -#: js/messages.php:316 +#: js/messages.php:317 msgid "Changing charset" msgstr "Karakterset aanpassen" -#: js/messages.php:320 libraries/Util.class.php:3249 +#: js/messages.php:321 libraries/Util.class.php:3249 msgid "Enable foreign key checks" msgstr "Controle op externe sleutelvelden inschakelen" -#: js/messages.php:323 +#: js/messages.php:324 msgid "Failed to get real row count." msgstr "Ophalen van exact aantal rijen mislukt." -#: js/messages.php:326 +#: js/messages.php:327 msgid "Searching" msgstr "Zoeken" -#: js/messages.php:327 +#: js/messages.php:328 msgid "Hide search results" msgstr "Zoekresultaten verbergen" -#: js/messages.php:328 +#: js/messages.php:329 msgid "Show search results" msgstr "Zoekresultaten tonen" -#: js/messages.php:329 +#: js/messages.php:330 msgid "Browsing" msgstr "Verkennen" -#: js/messages.php:330 +#: js/messages.php:331 msgid "Deleting" msgstr "Verwijderen" -#: js/messages.php:333 +#: js/messages.php:334 msgid "The definition of a stored function must contain a RETURN statement!" msgstr "" "De definitie van een opgeslagen functie moet een RETURN-statement bevatten!" -#: js/messages.php:334 libraries/DisplayResults.class.php:4835 +#: js/messages.php:335 libraries/DisplayResults.class.php:4835 #: libraries/DisplayResults.class.php:5093 libraries/Menu.class.php:349 #: libraries/Menu.class.php:450 libraries/Menu.class.php:576 #: libraries/Util.class.php:3670 libraries/Util.class.php:3671 @@ -1827,44 +1833,44 @@ msgstr "" msgid "Export" msgstr "Exporteren" -#: js/messages.php:337 libraries/rte/rte_routines.lib.php:737 +#: js/messages.php:338 libraries/rte/rte_routines.lib.php:737 msgid "ENUM/SET editor" msgstr "ENUM/SET-editor" -#: js/messages.php:338 +#: js/messages.php:339 #, php-format msgid "Values for column %s" msgstr "Waarden voor kolom %s" -#: js/messages.php:339 +#: js/messages.php:340 msgid "Values for a new column" msgstr "Waarden voor een nieuwe kolom" -#: js/messages.php:340 +#: js/messages.php:341 msgid "Enter each value in a separate field." msgstr "Plaats elke waarde in een afzonderlijk veld." -#: js/messages.php:341 +#: js/messages.php:342 #, php-format msgid "Add %d value(s)" msgstr "%d nieuwe waarde(n) toevoegen" -#: js/messages.php:344 +#: js/messages.php:345 msgid "" "Note: If the file contains multiple tables, they will be combined into one." msgstr "" "Opmerking: Als het bestand meerdere tabellen bevat, zullen deze samengevoegd " "worden tot één tabel." -#: js/messages.php:347 +#: js/messages.php:348 msgid "Hide query box" msgstr "SQL-queryveld verbergen" -#: js/messages.php:348 +#: js/messages.php:349 msgid "Show query box" msgstr "SQL-queryveld tonen" -#: js/messages.php:349 libraries/Console.class.php:88 +#: js/messages.php:350 libraries/Console.class.php:88 #: libraries/Console.class.php:214 libraries/DisplayResults.class.php:3475 #: libraries/DisplayResults.class.php:4819 libraries/Index.class.php:723 #: libraries/Util.class.php:710 libraries/Util.class.php:1207 @@ -1878,7 +1884,7 @@ msgstr "SQL-queryveld tonen" msgid "Edit" msgstr "Wijzigen" -#: js/messages.php:350 libraries/Console.class.php:89 +#: js/messages.php:351 libraries/Console.class.php:89 #: libraries/DbSearch.class.php:362 libraries/DisplayResults.class.php:3544 #: libraries/DisplayResults.class.php:4803 #: libraries/central_columns.lib.php:853 @@ -1890,41 +1896,41 @@ msgstr "Wijzigen" msgid "Delete" msgstr "Verwijderen" -#: js/messages.php:351 libraries/DisplayResults.class.php:913 +#: js/messages.php:352 libraries/DisplayResults.class.php:913 #: libraries/DisplayResults.class.php:921 #, php-format msgid "%d is not valid row number." msgstr "%d is geen geldig rijnummer." -#: js/messages.php:352 +#: js/messages.php:353 #: libraries/controllers/TableSearchController.class.php:437 #: libraries/controllers/TableSearchController.class.php:914 #: libraries/sql.lib.php:186 tbl_change.php:155 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" -#: js/messages.php:353 +#: js/messages.php:354 msgid "No auto-saved query" msgstr "Geen automatisch opgeslagen query" -#: js/messages.php:354 +#: js/messages.php:355 #, php-format msgid "Variable %d:" msgstr "Variabele %d:" -#: js/messages.php:357 libraries/normalization.lib.php:886 +#: js/messages.php:358 libraries/normalization.lib.php:886 msgid "Pick" msgstr "Kies" -#: js/messages.php:358 +#: js/messages.php:359 msgid "Column selector" msgstr "Kolomselectie" -#: js/messages.php:359 +#: js/messages.php:360 msgid "Search this list" msgstr "Zoek in deze lijst" -#: js/messages.php:360 +#: js/messages.php:361 #, php-format msgid "" "No columns in the central list. Make sure the Central columns list for " @@ -1934,15 +1940,15 @@ msgstr "" "centrale lijst voor database %s kolommen heeft die niet in de huidige tabel " "voorkomen." -#: js/messages.php:361 +#: js/messages.php:362 msgid "See more" msgstr "Meer" -#: js/messages.php:362 +#: js/messages.php:363 msgid "Are you sure?" msgstr "Bent u zeker?" -#: js/messages.php:363 +#: js/messages.php:364 msgid "" "This action may change some of the columns definition.
Are you sure you " "want to continue?" @@ -1950,51 +1956,51 @@ msgstr "" "Deze actie wijzigt mogelijk de definitie van de kolommen.
Weet u zeker " "dat u wilt doorgaan?" -#: js/messages.php:364 +#: js/messages.php:365 msgid "Continue" msgstr "Verder gaan" -#: js/messages.php:367 +#: js/messages.php:368 msgid "Add primary key" msgstr "Een primaire sleutel toevoegen" -#: js/messages.php:368 +#: js/messages.php:369 msgid "Primary key added." msgstr "Primaire sleutel toegevoegd." -#: js/messages.php:369 libraries/normalization.lib.php:191 +#: js/messages.php:370 libraries/normalization.lib.php:191 msgid "Taking you to next step…" msgstr "Naar de volgende stap…" -#: js/messages.php:370 +#: js/messages.php:371 #, php-format msgid "The first step of normalization is complete for table '%s'." msgstr "De eerste stap van normalisatie is voltooid voor tabel '%s'." -#: js/messages.php:371 libraries/normalization.lib.php:452 +#: js/messages.php:372 libraries/normalization.lib.php:452 #: libraries/normalization.lib.php:499 libraries/normalization.lib.php:584 #: libraries/normalization.lib.php:644 msgid "End of step" msgstr "Einde van de stap" -#: js/messages.php:372 +#: js/messages.php:373 msgid "Second step of normalization (2NF)" msgstr "Tweede stap van normalisatie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:373 js/messages.php:630 libraries/normalization.lib.php:288 +#: js/messages.php:374 js/messages.php:631 libraries/normalization.lib.php:288 msgid "Done" msgstr "Klaar" -#: js/messages.php:374 +#: js/messages.php:375 msgid "Confirm partial dependencies" msgstr "Gedeeltelijke afhankelijkheden bevestigen" -#: js/messages.php:375 +#: js/messages.php:376 msgid "Selected partial dependencies are as follows:" msgstr "Dit zijn de geselecteerde gedeeltelijke afhankelijkheden:" -#: js/messages.php:376 +#: js/messages.php:377 msgid "" "Note: a, b -> d,f implies values of columns a and b combined together can " "determine values of column d and column f." @@ -2002,21 +2008,21 @@ msgstr "" "Opmerking: a, b -> d,f betekent waardes van kolom a en b gecombineerd kunnen " "de waarden determineren van kolom d en kolom f." -#: js/messages.php:377 +#: js/messages.php:378 msgid "No partial dependencies selected!" msgstr "Er zijn geen gedeeltelijke afhankelijkheden geselecteerd!" -#: js/messages.php:379 +#: js/messages.php:380 msgid "Show me the possible partial dependencies based on data in the table" msgstr "" "Toon de mogelijke gedeeltelijke afhankelijkheden op basis van gegevens in de " "tabel" -#: js/messages.php:380 +#: js/messages.php:381 msgid "Hide partial dependencies list" msgstr "Verberg lijst met gedeeltelijke afhankelijkheden" -#: js/messages.php:381 +#: js/messages.php:382 msgid "" "Sit tight! It may take few seconds depending on data size and column count " "of the table." @@ -2024,170 +2030,171 @@ msgstr "" "Even geduld! Het kan enkele seconden duren, afhankelijk van de hoeveelheid " "gegevens en het aantal kolommen in de tabel." -#: js/messages.php:382 +#: js/messages.php:383 msgid "Step" msgstr "Stap" -#: js/messages.php:383 +#: js/messages.php:384 msgid "The following actions will be performed:" msgstr "De volgende acties worden uitgevoerd:" -#: js/messages.php:384 +#: js/messages.php:385 #, php-format msgid "DROP columns %s from the table %s" msgstr "Verwijder (DROP) kolommen %s uit tabel %s" -#: js/messages.php:385 +#: js/messages.php:386 msgid "Create the following table" msgstr "Maak de volgende tabel aan" -#: js/messages.php:388 +#: js/messages.php:389 msgid "Third step of normalization (3NF)" msgstr "Derde stap van normalisatie (3NF)" -#: js/messages.php:389 +#: js/messages.php:390 msgid "Confirm transitive dependencies" msgstr "Overgankelijke afhankelijkheden bevestigen" -#: js/messages.php:390 +#: js/messages.php:391 msgid "Selected dependencies are as follows:" msgstr "Dit zijn de geselecteerde afhankelijkheden:" -#: js/messages.php:391 +#: js/messages.php:392 msgid "No dependencies selected!" msgstr "Er zijn geen afhankelijkheden geselecteerd!" -#: js/messages.php:394 libraries/central_columns.lib.php:1215 +#: js/messages.php:395 libraries/central_columns.lib.php:1215 #: libraries/insert_edit.lib.php:1456 libraries/server_variables.lib.php:157 #: setup/frames/config.inc.php:42 setup/frames/index.inc.php:281 -#: templates/columns_definitions/column_definitions_form.phtml:158 +#: templates/columns_definitions/column_definitions_form.phtml:157 #: templates/table/gis_visualization/gis_visualization.phtml:48 #: templates/table/relation/common_form.phtml:109 +#: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Opslaan" -#: js/messages.php:397 +#: js/messages.php:398 msgid "Hide search criteria" msgstr "Zoekcriteria verbergen" -#: js/messages.php:398 +#: js/messages.php:399 msgid "Show search criteria" msgstr "Zoekcriteria tonen" -#: js/messages.php:399 +#: js/messages.php:400 msgid "Range search" msgstr "Zoeken op bereik" -#: js/messages.php:400 +#: js/messages.php:401 msgid "Column maximum:" msgstr "Kolommaximum:" -#: js/messages.php:401 +#: js/messages.php:402 msgid "Column minimum:" msgstr "Kolomminimum:" -#: js/messages.php:402 +#: js/messages.php:403 msgid "Minimum value:" msgstr "Minimumwaarde:" -#: js/messages.php:403 +#: js/messages.php:404 msgid "Maximum value:" msgstr "Maximumwaarde:" -#: js/messages.php:406 +#: js/messages.php:407 msgid "Hide find and replace criteria" msgstr "Zoek- en vervangcriteria verbergen" -#: js/messages.php:407 +#: js/messages.php:408 msgid "Show find and replace criteria" msgstr "Zoek- en vervangcriteria tonen" -#: js/messages.php:411 +#: js/messages.php:412 msgid "Each point represents a data row." msgstr "Ieder punt stelt een gegevensrij voor." -#: js/messages.php:413 +#: js/messages.php:414 msgid "Hovering over a point will show its label." msgstr "Beweeg over een punt om het label te tonen." -#: js/messages.php:415 +#: js/messages.php:416 msgid "To zoom in, select a section of the plot with the mouse." msgstr "Selecteer een sectie van de grafiek met de muis om in te zoomen." -#: js/messages.php:417 +#: js/messages.php:418 msgid "Click reset zoom button to come back to original state." msgstr "Klik herstel zoom om terug te keren naar de begintoestand." -#: js/messages.php:419 +#: js/messages.php:420 msgid "Click a data point to view and possibly edit the data row." msgstr "" "Klik een gegevenspunt aan om dit te bekijken en om eventueel de gegevens te " "bewerken." -#: js/messages.php:421 +#: js/messages.php:422 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" "De weergave kan herschaald worden door het langs de hoek rechtsonder te " "slepen." -#: js/messages.php:424 +#: js/messages.php:425 msgid "Select two columns" msgstr "Selecteer twee kolommen" -#: js/messages.php:426 +#: js/messages.php:427 msgid "Select two different columns" msgstr "Selecteer twee verschillende kolommen" -#: js/messages.php:428 +#: js/messages.php:429 msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:431 js/messages.php:563 js/messages.php:580 +#: js/messages.php:432 js/messages.php:564 js/messages.php:581 #: libraries/Error_Handler.class.php:344 libraries/insert_edit.lib.php:2563 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:194 msgid "Ignore" msgstr "Negeren" -#: js/messages.php:432 libraries/DisplayResults.class.php:3478 +#: js/messages.php:433 libraries/DisplayResults.class.php:3478 #: libraries/DisplayResults.class.php:4824 msgid "Copy" msgstr "Kopiëren" -#: js/messages.php:435 +#: js/messages.php:436 msgid "Point" msgstr "Punt" -#: js/messages.php:437 +#: js/messages.php:438 msgid "Linestring" msgstr "Lijnstuk definitie" -#: js/messages.php:438 +#: js/messages.php:439 msgid "Polygon" msgstr "Polygoon" -#: js/messages.php:439 libraries/DisplayResults.class.php:1783 +#: js/messages.php:440 libraries/DisplayResults.class.php:1783 msgid "Geometry" msgstr "Geometrie" # https://nl.wikipedia.org/wiki/Ingeschreven_cirkel -#: js/messages.php:440 +#: js/messages.php:441 msgid "Inner ring" msgstr "Binnenste ring" # https://nl.wikipedia.org/wiki/Aangeschreven_cirkel -#: js/messages.php:441 +#: js/messages.php:442 msgid "Outer ring" msgstr "Buitenste ring" -#: js/messages.php:445 +#: js/messages.php:446 msgid "Do you want to copy encryption key?" msgstr "Wilt u de encryptiesleutel kopiëren?" -#: js/messages.php:446 +#: js/messages.php:447 msgid "Encryption key" msgstr "Encryptiesleutel" -#: js/messages.php:450 +#: js/messages.php:451 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2195,24 +2202,24 @@ msgstr "" "Geeft aan dat je wijzigingen in deze pagina hebt aangebracht; je zal om " "bevestiging gevraagd worden voordat deze wijzigingen verworpen worden" -#: js/messages.php:455 +#: js/messages.php:456 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:456 +#: js/messages.php:457 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:457 +#: js/messages.php:458 msgid "Please select the primary key or a unique key!" msgstr "Selecteer de primaire sleutel of een unieke sleutel!" -#: js/messages.php:458 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:459 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Kies weer te geven kolom" -#: js/messages.php:460 +#: js/messages.php:461 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2220,77 +2227,77 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:463 +#: js/messages.php:464 msgid "Page name" msgstr "Paginanaam" -#: js/messages.php:464 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:465 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Pagina opslaan" -#: js/messages.php:465 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:466 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Pagina opslaan als" -#: js/messages.php:466 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:467 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina openen" -#: js/messages.php:467 +#: js/messages.php:468 msgid "Delete page" msgstr "Pagina verwijderen" -#: js/messages.php:468 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:469 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Naamloos" -#: js/messages.php:469 +#: js/messages.php:470 msgid "Please select a page to continue" msgstr "Gelieve een pagina te selecteren om verder te gaan" -#: js/messages.php:470 +#: js/messages.php:471 msgid "Please enter a valid page name" msgstr "Gelieve een geldige paginanaam in te geven" -#: js/messages.php:471 +#: js/messages.php:472 msgid "Do you want to save the changes to the current page?" msgstr "Wilt u de wijzigingen in de huidige pagina opslaan?" -#: js/messages.php:472 +#: js/messages.php:473 msgid "Successfully deleted the page" msgstr "Pagina werd succesvol verwijderd" -#: js/messages.php:473 +#: js/messages.php:474 msgid "Export relational schema" msgstr "Exporteer relationeel schema" -#: js/messages.php:474 +#: js/messages.php:475 msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" -#: js/messages.php:477 +#: js/messages.php:478 #, php-format msgid "Add an option for column \"%s\"." msgstr "Een optie voor kolom \"%s\" toevoegen." -#: js/messages.php:478 +#: js/messages.php:479 #, php-format msgid "%d object(s) created." msgstr "%d object(en) aangemaakt." -#: js/messages.php:479 libraries/mult_submits.lib.php:340 +#: js/messages.php:480 libraries/mult_submits.lib.php:340 #: libraries/mult_submits.lib.php:373 libraries/sql_query_form.lib.php:408 msgid "Submit" msgstr "Verzenden" -#: js/messages.php:482 +#: js/messages.php:483 msgid "Press escape to cancel editing." msgstr "Druk op ESC om het bewerken te annuleren." -#: js/messages.php:483 +#: js/messages.php:484 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2298,15 +2305,15 @@ msgstr "" "U heeft gegevens bewerkt en deze werden nog niet opgeslagen. Bent u zeker " "dat u deze pagina wil verlaten alvorens de wijzigingen op te slaan?" -#: js/messages.php:484 +#: js/messages.php:485 msgid "Drag to reorder." msgstr "Sleep om te herschikken." -#: js/messages.php:485 +#: js/messages.php:486 msgid "Click to sort results by this column." msgstr "Klik om resultaten te sorteren op deze kolom." -#: js/messages.php:486 +#: js/messages.php:487 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2317,26 +2324,26 @@ msgstr "" " + klik (Mac: +